gpt4 book ai didi

json - 将查询与多个值匹配

转载 作者:行者123 更新时间:2023-12-02 22:33:20 24 4
gpt4 key购买 nike

我有一个值列表,我希望所有在其product_code字段中具有这些值的文档。

我试过了,但即使它没有出错,也只给了我其中一份文件:

"query": {
"match": {
"product_code": {
"query": ["ABC 4", "ABC 5"]
}
}
}

所以我基本上是在寻找 terms过滤器的功能,但是要进行分析。

我当然可以做:
"bool": {
"should": [
{
"query": {
"match": {
"product_code": "ABC 4"
}
}
},
{
"query": {
"match": {
"product_code": "ABC 5"
}
}
}
]
}

但这对于冗长的列表而言相当冗长。
product_code的定义如下:
"product_code": {
"type": "string",
"analyzer": "product_code",
}

使用product_code分析器:
"product_code": {
"type": "custom",
"filter": [
"lowercase",
"trim"
],
"tokenizer": "keyword"
}

最佳答案

没有与terms AFAIK相同的match查询。另一个选择是query_string,它不太冗长:

{
"query": {
"query_string": {
"default_field": "product_code",
"query": "\"ABC 4\" OR \"ABC 5\""
}
}
}

http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html

关于json - 将查询与多个值匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26134681/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com