gpt4 book ai didi

ruby-on-rails - 如何仅在使用 ElasticSearch 和 Tire 存在时按属性过滤搜索?

转载 作者:太空宇宙 更新时间:2023-11-03 16:32:03 25 4
gpt4 key购买 nike

现在我写

Tire.search INDEX_NAME do
query do
filtered do
query { string term }
filter :or, { missing: { field: :app_id } },
{ terms: { app_id: app_ids } }
end
end
end.results.to_a

最佳答案

返回没有 app_id 或与您的条件匹配的项目听起来像是 or 过滤器的工作 - 我会尝试

filter :or, [
{:not => {:exists => {:field => :app_id}}},
{:terms => {:app_id => app_ids}}
]

关于ruby-on-rails - 如何仅在使用 ElasticSearch 和 Tire 存在时按属性过滤搜索?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14259213/

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