思考Sphinx索引未过期的记录
让 Thinking Sphinx 仅对今天日期小于或等于记录的“expires_at”字段的记录建立索引的最佳方法是什么?
提前致谢。
What would be the best approach to have Thinking Sphinx only index records where Today's date is less than or equal to the record's "expires_at" field?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的方法是将以下语句添加到您的 Define_index 块中:
无论如何,这就是 MySQL 版本。 PostgreSQL 将非常相似:
虽然我不是 PostgreSQL 专家,但希望这足以满足需要。
干杯
The easiest approach is adding the following statement to your define_index block:
That's the MySQL version, anyway. PostgreSQL will be pretty similar:
Although, I'm no PostgreSQL expert, but hopefully that's close enough to what's needed.
Cheers
PostgreSQL 还接受函数“now()”
PostgreSQL also accepts the function 'now()'