我在搜索時使用了多個匹配短語。但是,我必須單獨放置所有數學短語的限制結果。我的意思是,我想在每場比賽中只取得2次結果。我找不到任何限制/尺寸屬性。你知道任何解決方案嗎?如何限制多個匹配查詢中的結果?
例如代碼:
"query": {
"bool": {
"should": [
{
"match_phrase": {
"text": {
"query": " Home is clear and big ",
"slop": 2
}
}
},
{
"match_phrase": {
"text": {
"query": "365 different company use our system in test",
"slop": 2
}
}
}
]}}
它不是不工作:( –