思考狮身人面像日期范围问题

发布于 2024-10-30 18:59:33 字数 356 浏览 1 评论 0原文

为什么这会返回结果:

@results = Index.search "#{@keywords}", :with => {
 :published_on => 1.week.ago..Time.now,  
}

而不是 this?

@results = Index.search "#{@keywords}", :with => {
  :published_on => '2011-04-01'..'2011-04-08',
}

published_on 是一个日期时间字段,但我也尝试过使用小时、分钟和秒。

Why does this return results:

@results = Index.search "#{@keywords}", :with => {
 :published_on => 1.week.ago..Time.now,  
}

but not this?

@results = Index.search "#{@keywords}", :with => {
  :published_on => '2011-04-01'..'2011-04-08',
}

published_on is a datetime field, but I have tried it with hour, minutes and seconds as well.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筱武穆 2024-11-06 18:59:33

鉴于您得到了结果,我猜 published_on 实际上是一个属性,而不是一个字段?

如果属性是日期时间数据类型,那么您需要为过滤器传递 Ruby Time 对象 - 即整数时间戳(这就是 Thinking Sphinx 将时间转换为的值)。 TS 不会尝试解析字符串,因此您需要自己管理。

在自动解析日期和时间方面,Sphinx 并不像 MySQL 那样精美 - 您需要使用正确的数据类型。

Given you're getting results, I'm guessing published_on is actually an attribute, not a field?

If the attribute is a datetime data type, then you need to pass in Ruby Time objects for filters - that, or integer timestamps (which is what Thinking Sphinx converts times to anyway). TS doesn't try to parse strings, so you'll need to manage that yourself.

Sphinx isn't as fancy as MySQL when it comes to auto-parsing dates and times - you need to use the right data type.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文