gpt4 book ai didi

ruby-on-rails - Searchkick:在smart_aggs中包括一些where子句

转载 作者:行者123 更新时间:2023-12-03 02:11:38 25 4
gpt4 key购买 nike

使用aggs时如何使用某些过滤器,而不使用其他过滤器?如果我使用smart_aggs: false,则aggs计数中不使用任何过滤器。
默认情况下,条件适用于聚合。

Product.search "wingtips", where: {color: "brandy"}, aggs: [:size]
# aggregations for brandy wingtips are returned
使用以下方法更改:
Product.search "wingtips", where: {color: "brandy"}, aggs: [:size], smart_aggs: false
# aggregations for all wingtips are returned
需要允许某些地方的收入,但其他地方不允许
Product.search "wingtips", where_no_aggs_count: {country_availability: "us"}, where_aggs_count: {color: "brandy"}, aggs: [:size], smart_aggs: false

最佳答案

查询和聚合在Elasticsearch中链接。
如果需要2个不同的上下文,则必须执行2个不同的请求。

关于ruby-on-rails - Searchkick:在smart_aggs中包括一些where子句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64554070/

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