如何使用acts_as_ferret重建索引?
我正在使用acts_as_ferret(0.4.3)进行全文搜索,但是当更新索引时我需要重新启动
ferret,那么有什么好的方法让它自动更新吗?谢谢!
I am using acts_as_ferret(0.4.3) to do full-text searching, but when update index I need to restart
ferret, so is there any good method to make it update automatic? thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我得到了答案
这个任务被简化了:我告诉它每小时重建整个索引。我猜当我的数据集足够大时,这会非常慢。在这种情况下,我需要跟踪过去一小时内更新的所有模型实例并为其建立索引。
最后,我需要一个 cron 作业来运行 rake 任务,确保将环境设置为“生产”:
I got the answer
This task is simplified: I'm telling it to rebuild the entire index each hour. I'm guessing when my dataset gets big enough, this will be really slow. In that case I'll need to track all the model instances that got updated in the past hour and just index those.
Finally, I needed a cron job to run the rake task, making sure to set the environment to "production":