Sphinx实时索引配置?
本文介绍了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
这篇关于Sphinx实时索引配置?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!