Sphinx 中 --rotate 的时间配置放在哪里?

发布于 2024-11-04 04:12:59 字数 249 浏览 0 评论 0原文

我想在 sphinx 中使用 --rotate 每 5 分钟更新一次索引,该数字放在哪里?

例如,

indexer --rotate --config /home/myuser/sphinx.conf --all 

我在这个命令中搜索了这里但没有运气,提前致谢

I want to use --rotate in sphinx for updating my index every 5 minutes, where is that number placed?

I this command for example

indexer --rotate --config /home/myuser/sphinx.conf --all 

I have searched here without luck, thanks in advance

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

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

发布评论

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

评论(1

一抹苦笑 2024-11-11 04:12:59

sphinx 打包的索引器程序不是守护进程,也不会自行定期运行。相反,您需要使用调度程序来执行此操作。

对于大多数 Unix 版本,您只需使用 cron 运行索引器即可。

$ crontab -e

*/5 * * * * /path/to/sphinx/bin/indexer --rotate --config /home/myuser/sphinx.conf --all

The indexer program packaged with sphinx is not a daemon, nor will it run regularly on its own. Instead, you need to use a scheduling program to do that.

For most flavors of Unix, you can just run the indexer using cron.

$ crontab -e

*/5 * * * * /path/to/sphinx/bin/indexer --rotate --config /home/myuser/sphinx.conf --all

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