エラスティック検索で完全一致検索を実装しようとしています。しかし、必要な結果が得られません。これは、私が直面している問題と私が試したことを説明するコードです。
doc1 = {"sentence": "Today is a sunny day."}
doc2 = {"sentence": " Today is a sunny day but tomorrow it might rain"}
doc3 = {"sentence": "I know I am awesome"}
doc4 = {"sentence": "The taste of your dish is awesome"}
doc5 = {"sentence": "The taste of banana shake is good"}
# Indexing the above docs
es.index(index="english",doc_type="sentences",id=1,body=doc1)
es.index(index="english",doc_type="sentences",id=2,body=doc2)
es.index(index="english",doc_type="sentences",id=3,body=doc3)
es.index(index="english",doc_type="sentences",id=4,body=doc4)
es.index(index="english",doc_type="sentences",id=5,body=doc5)
クエリ 1
res = es.search(index="english",body={"from":0,"size":5,
"query":
{"match_phrase":
{"sentence":{"query":"Today is a sunny day"}
}},
"explain":False})
クエリ 2
res = es.search(index="english",body={"from":0,"size":5,
"query":{
"bool":{
"must":{
"match_phrase":
{"sentence":{"query":"Today is a sunny day"}
}},
"filter":{
"term":{
"sentence.word_count": 5}},
}
}
})
そのため、クエリ 1 を実行すると、doc2 が上位の結果として取得されますが、doc1 が上位の結果になるようにします。
クエリ 2 のように、(検索の長さをクエリの長さに制限するために) 同じものにフィルターを使用しようとすると、結果が得られません。
これを解決するための助けを得ることができれば、本当に感謝しています。そのクエリを含む一致ではなく、指定されたクエリと完全に一致する必要があります。
ありがとう