Sphinx实时索引配置?

2022-09-02 00:00:00 php sphinx

我是Sphinx新手,我需要Linux服务器中实时indexex sphinx.config的示例代码?


解决方案

对于接近实时的索引,您可以使用增量方法:

http://sphinxsearch.com/docs/1.10/delta-updates.html

编辑:

索引所有内容:

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

仅索引增量:

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

合并索引:

indexer --merge main delta --rotate

相关文章