标签:mic 16px 轻量 png 扩展 apache https article 云计
http://127.0.0.1:9200/_analyze?analyzer=ik_smart&pretty=true&text=我是程序员
http://127.0.0.1:9200/_analyze?analyzer=ik_max_word&pretty=true&text=我是程序员
输出的结果为:
请求:PUT http://localhost:9200/es_test01
请求体:
{
"mappings": {
"article": {
"properties": {
"id": {
"type": "long",
"store": true,
"index":"not_analyzed"
},
"title": {
"type": "text",
"store": true,
"index":"analyzed",
"analyzer":"ik_max_word"
},
"content": {
"type": "text",
"store": true,
"index":"analyzed",
"analyzer":"ik_max_word"
}
}
}
}
}
请求:PUT http://localhost:9200/es_test01/article/1
请求体:
{
"id":1,
"title":"ElasticSearch是一个基于Lucene的搜索服务器", "content":"它提供了一个分布式多用户能力的全文搜索引擎,基于RESTfulweb接口。
Elasticsearch是用Java 开发的,并作为Apache许可条款下的开放源码发布,是当前流行的企业级搜索引擎。设计用于云计算中,能够达到实时
搜索,稳定,可靠,快速,安装使用方便。"
}
请求:POST http://localhost:9200/es_test01/article/_search
请求体:
{
"query": {
"query_string": {
"default_field": "title",
"query": "搜索服务器"
}
}
}
返回结果:
请求:POST http://localhost:9200/es_test01/article/_search
请求体:
{
"query": {
"term": {
"title": "搜索"
}
}
}
返回结果:
标签:mic 16px 轻量 png 扩展 apache https article 云计
原文地址:https://www.cnblogs.com/Zzzzn/p/12368216.html