例如我有一个查询“纽约的中餐馆”
我希望查询结果中出现更多不同的单词,越多越好
bool should
查询类似的效果。{
"query": {
"bool": {
"should": [
{
"match_phrase": {
"content": {
"query": "chinese"
}
}
},
{
"match_phrase": {
"content": {
"query": "resturant"
}
}
},
{
"match_phrase": {
"content": {
"query": "new york"
}
}
}
],
"minimum_should_match": "2<70%"
}
},
"size": 20
}
哪个更好?