0

我正在寻找用于elasticsearch_dsl在单个字段上查询多个字符串的方法。
当我尝试使用通配符选项时,它只列出找到的最后一个字符串

例如,我需要在名为的字段中查找以下字符串cars_model

“honda_accord”
“honda_crv”
“honda_civic” … etc

所以我正在形成的查询是

from elasticsearch import Elasticsearch
from elasticsearch_dsl import Search
client = Elasticsearch([{'host': MY_HOST, 'port': MY_PORT, 'timeout': TIME_OUT}])

s = Search(using=client,index=“myIndex”).query("wildcard",cars_model=“honda*”).execute()

在这里,它只返回“honda_crv”的列表,我假设这是最后一个数据。

在做了一些研究后,我尝试使用以下选项

body = {'query_string': {'query': ‘honda*’, 'default_operator': 'or', 'analyze_wildcard': True}}
s = Search(using=client, index=“myIndex”).query(body).execute()

甚至尝试过multi_match仍然给我找到最后一个查询的选项。

from elasticsearch_dsl.query import MultiMatch, Match
s = Search(using=client, index=“my_index”).query("multi_match", query="wildcard", cars_model=[“honda_accord”,“honda_crv”, “honda_civic” ])

从逻辑上讲,它应该列出与“honda*”匹配的所有车型

任何帮助表示赞赏。

4

0 回答 0