gpt4 book ai didi

elasticsearch - 等效于boolean或在ElasticSearch中

转载 作者:行者123 更新时间:2023-12-03 00:40:18 26 4
gpt4 key购买 nike

我目前在我的数据中搜索像这样的一个词的完全匹配项:

{
"query": {
"bool": {
"must": [
{
"term": {
"term_a": "xxxxx"
}
}
]
}
}
}

但是,我希望能够搜索多个术语并获得至少匹配一个的所有文档。因此,在SQL中讲 term_a = 'xxxxx' or term_b = 'yyyyy'。我怎样才能做到这一点?

最佳答案

然后,您可以将boolshould语句一起用于每个term:

"bool": {
"should": [
{
"term": {
"term_a": "xxxxx"
}
},
{
"term": {
"term_b": "yyyyy"
}
}
]
}

如果要在 同一字段中搜索多个术语,则可以使用 terms query

关于elasticsearch - 等效于boolean或在ElasticSearch中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44591031/

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