0
在elasticsearch,我構建過濾查詢,以便找到包含都一個短語和長期文件。以下查詢不起作用。它似乎返回結果與查詢數組中的項目,但似乎有應用'或'運算符。Elasticseach:匹配短語和長期
編輯:由於我使用PHP,以下示例是一個php數組。
'query' => [
'filtered' => [
'query' => [
'match' => [
"post_content" => [
'query' => ['ambulance services', 'veteran'],
'operator' => 'and',
'type' => 'phrase'
]
]
],
'filter' => [
...
]
]
]
你能張貼您的映射,以及幾樣文檔(你期望返回的那些)? –