sphinx相关文章

sphinx配置文件详解
http://yanue.net/post-129.html

Sphinx+Scws 搭建千万级准实时搜索&应用场景详解
http://blog.csdn.net/pi9nc/article/details/17632589

Sphinx + PHP + scws构建MySQL准实时分布式全文检索实战
http://www.qixing318.com/article/sphinx-php-scws-build-mysql-quasi-realtime-distributed-fulltext-retrieval-of-actual-combat.html

http://www.ttlsa.com/sphinx/sphinx_scws-to-build-tens-of-millions-of-quasi-real-time-search-_-application-scenarios/这篇文字很好


num_matches: 当前返回的结果数,<= limit设置值。
max_matches: 最多返回的结果数,默认为1000,用户最多只能看到1000条搜索结果。
total_found: 结果总数。索引中所有满足查询条件的文档总数。
total: 最多返回结果数,取值取决于max_matches值和total_found值。如果total_found数超过max_matches,则total = max_matches,否则,total = total_found。可以用于分页。

原文地址:https://www.cnblogs.com/zl0372/p/sphinx_15.html