gpt4 book ai didi

具有 multi_match AND bool 的 ElasticSearch

转载 作者:行者123 更新时间:2023-11-29 02:45:46 31 4
gpt4 key购买 nike

我尝试学习 Elasticsearch 以将其添加到我的 Rails 应用程序中。我想对 2 个字段执行 multi_match 查询(就好像它们只是一个字段一样),并且还有一个必须等​​于 1 的另一个字段(状态)的过滤器。

let response = Wine.search({
query: {
multi_match: {
query: "test",
fields: ["winery", "name"]
},
bool: {
must: {
term: { status: 1 }
},
should: [],
minimum_should_match: 1
}
}
})

错误是:

"fields\":[\"winery\",\"name\"]},\"bool\":{\"must\":{\"term\":{\"status\":1}},\"should\":[],\"minimum_should_match\":1}}}]]]; nested: ElasticsearchParseException[Expected field name but got START_OBJECT \"bool\"]; }]","status":400}

请求有什么问题?如何同时执行 multi_match 和 BOOL?

最佳答案

使用 filtered query :

{
"query": {
"filtered": {
"query": {
"multi_match": {
"query": "test",
"fields": [
"winery",
"name"
]
}
},
"filter": {
"term": {
"status": "1"
}
}
}
}
}

Elasticsearch 5 的相同查询:

{
"query": {
"bool": {
"must": {
"multi_match": {
"query": "test",
"fields": [
"winery",
"name"
]
}
},
"filter": {
"term": {
"status": "1"
}
}
}
}
}

关于具有 multi_match AND bool 的 ElasticSearch,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27835679/

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