摘要:
在使用sphinx的setlimit时,一定要注意,服务器端查询结果集大小限制,也就是最大返回匹配数。这个值默认是1000。假设采用默认设置,然后我们来跑一下下面这段$sl = new SphinxClient();$sl->SetServer('localhost', 9000);$sl->SetConnectTimeout(1);$sl->SetMatchMode(SPH_MATCH_ALL);$sl->SetLimits(1001, 10);$sl->SetArrayResult(true);$re = $sl->Query($sear 阅读全文