所以我有这个索引
{
"settings":{
"index":{
"number_of_replicas":0,
"analysis":{
"analyzer":{
"default":{
"type":"custom",
"tokenizer":"keyword",
"filter":[
"lowercase",
"my_ngram"
]
}
},
"filter":{
"my_ngram":{
"type":"nGram",
"min_gram":2,
"max_gram":20
}
}
}
}
}
}
我正在通过轮胎宝石进行搜索
{
"query":{
"query_string":{
"query":"xyz",
"default_operator":"AND"
}
},
"sort":[
{
"count":"desc"
}
],
"filter":{
"term":{
"active":true,
"_type":null
}
},
"highlight":{
"fields":{
"name":{
}
},
"pre_tags":[
"<strong>"
],
"post_tags":[
"</strong>"
]
}
}
我有两个应该匹配名为“xyz 帖子”和“xyz 问题”的帖子当我执行此搜索时,我会正确恢复突出显示的字段
<strong>xyz</strong> question
<strong>xyz</strong> post
现在事情就是这样......只要我在索引和重新索引中将 min_gram 更改为 1。突出显示的字段开始返回,因为
<strong>x</strong><strong>y</strong><strong>z</strong> pos<strong>xyz</strong>t
<strong>x</strong><strong>y</strong><strong>z</strong> questio<strong>xyz</strong>n
我简直无法理解为什么。