0
我已經設置Elastic Search 5.x & Kibana在我的本地開發環境中,並設置了索引我想要結果返回精確搜索詞(因此只返回那裏,準確的搜索詞/串中發現的結果。Kibana開發工具中的彈性搜索中的精確搜索字詞(使用ES 5.x)
如何調整這需要進行精確的搜索,「臉譜意見」將是有效的,但「意見臉譜」不會被發現
我現有的Kibana查詢如下:
{
"query": {
"bool": {
"should": [
{
"match": {
"text": "facebook advice"
}
},
{
"match": {
"profile": "facebook advice"
}
}
],
"minimum_should_match": 1,
"filter": {
"term": {
"accountid": "15"
}
}
}
}
}