关于弹性搜索的新手问题。我已经设置了elasticsearch lucene索引,并使用搜索包含某些术语的名称,如
search_response = es.search(index = 'sample', body = {'query':{'match':{'first_name':"JUST"}}})
这不会返回名称"JUSTIN",但以下查询会返回
search_response = es.search(index = 'sample', body = {'query':{'match':{'first_name':"JUSTIN"}}})
我做错了什么?"match"查询不应该返回包含该术语的记录吗?谢谢
处理该需求的最佳方法是创建一个使用edgeNGram令牌过滤器的自定义分析器。忘记通配符和在查询字符串中使用*
,它们的性能都不如edgeNGram方法。
所以你必须先创建这样的索引,然后将数据重新索引到其中
curl -XPUT http://localhost:9200/sample -d '{
"settings": {
"analysis": {
"filter": {
"prefixes": {
"type": "edgeNGram",
"min_gram": 1,
"max_gram": 15
}
},
"analyzer": {
"my_analyzer": {
"type": "custom",
"tokenizer": "standard",
"filter": ["lowercase", "prefixes"]
}
}
}
},
"mappings": {
"your_type": {
"properties": {
"first_name": {
"type": "string",
"analyzer": "my_analyzer",
"search_analyzer": "standard"
}
}
}
}
}'
然后在对first_name: JUSTIN
进行索引时,您将获得以下索引令牌:j
、ju
、jus
、just
、justi
、justin
,基本上都是JUSTIN的前缀。
然后,您将能够使用第二个查询进行搜索,并实际找到您想要的内容。
search_response = es.search(index = 'sample', body = {'query':{'match':{'first_name':'JUST'}}})