elasticsearch之分词查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elasticsearch之分词查询相关的知识,希望对你有一定的参考价值。
使用elk时,search时默认带有分词功能,搜索关键字并不精准,为方便search查询,将分词功能禁用:
curl -XPUT http://localhost:9200/_template/template_1 -d ‘{
"template" : "*",
"order":0,
"settings":{
"number_of_shards":5
},
"mappings":{
"fluentd":{
"properties":{
"request_dir":{"type":"string","index":"not_analyzed"},
"http_user_agent":{"type":"string","index":"not_analyzed"}
}
}
}
}‘
其中:not_analyzed参数是禁用分词。analyzed:启用分词
本文出自 “努力奔小康” 博客,请务必保留此出处http://302876016.blog.51cto.com/12889292/1948433
以上是关于elasticsearch之分词查询的主要内容,如果未能解决你的问题,请参考以下文章
初识ElasticSearch -文档查询之match查询 | 分词器