Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
让 Thinking Sphinx 仅索引今天日期小于或等于记录的“expires_at”字段的记录的最佳方法是什么?
提前致谢。
最简单的方法是将以下语句添加到您的 define_index 块中:
其中“expired_at >= NOW()”
无论如何,那是 MySQL 版本。PostgreSQL 将非常相似:
其中“expired_at >= current_timestamp”
虽然,我不是 PostgreSQL 专家,但希望这足以满足需要。
干杯
PostgreSQL 也接受函数 'now()'