我想更多地了解 minimum_should_match 在elasticsearch中如何用于查询搜索
GET /customers/_search
{
"query": {
"bool": {
"must":[
{
"query_string":{
"query": "大月亮",
"default_field":"fullName",
"minimum_should_match": "70%" ------> experimented with this value
}
}
]
}
}
}
我尝试了查询中的百分比,我可以看到我得到了不同的中文结果?
我尝试阅读文档,但没有清楚地理解这个选项是如何工作的?