条件“或”考虑按日期范围过滤的狮身人面像搜索
我在按日期范围连接条件 OR 与 filterint 时遇到问题。 类似的东西
#pseudo SQL syntax
(@date_start < params[:date_to_search] < @date_end) && (@every_day==1 || @day_of_week== params[:day])
-
class OfferTime < ActiveRecord::Base
define_index do
indexes every_day #boolean
indexes day_of_week #string eg. Tue, Mon etc
has date_start #Date NOT datetime
has date_end #Date
end
end
要进行条件 OR 我使用这个解决方案: Thinking Sphinx 搜索中的条件“或”
这非常有效。
(OfferTime.search "@every_day 1 | @day_of_week Tue", :match_mode => :extended).size
# => 2
# Correct answer
但我不知道如何将其与该日期范围联系起来
(@date_start < params[:date_to_search] < @date_end)
示例:
(OfferTime.search "@every_day 1 | @day_of_week Tue & @date_start < #{1.year.ago}", :match_mode => :extended).size
# => 1
# wrong answer! should be 0!
是否可以使用 ThinkingSphinx 来实现这一点?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定您所追求的逻辑 - 是
每天或(星期几和日期开始)
,还是(每天或星期几)和日期开始
?后者是可能的 - 但您需要使用 :with 参数来过滤属性 - 它应该是 文档中有详细介绍。要获得“不到一年前”的过滤器,您需要使用一个范围 - 从一年前到今天(或者很远的未来,如果更合适的话)。
如果是前者,我不确定这是否可能 - 但如果是,您可能需要研究表达式语法和 Sphinx 的 select 子句。同样,在 TS 文档中介绍了一些内容,其中包含指向相关的狮身人面像部分。
Not sure exactly the logic you're after - is it
every day OR (day of week and date start)
, or(every day OR day of week) AND date start
?The latter is possible - but you'll want to filter on the attribute using the :with arguments - it should be well-covered in the docs. To get a 'less than 1 year ago' filter, you'll need to use a range - from one year ago to today (or well into the future, if that's more appropriate).
If it's the former, I'm not sure if that's possible - but if it is, you'll likely need to investigate the expression syntax and Sphinx's select clause. Again, covered a bit in the TS docs, with links to the relevant Sphinx sections.