当我尝试简单的 MySql 查询时
select id
from `contacts`
where name LIKE '%abdul%'
OR email LIKE '%abdul%'
OR phone LIKE '%abdul%'
它从我的数据库中返回 278 条记录,当我像这样通过 Sphinx 搜索进行搜索时
$sphinx = new SphinxClient();
$sphinx->setServer('localhost',9312);
$sphinx->setLimits(0,1000);
$sphinx->setMatchMode(SPH_MATCH_EXTENDED2);
$result = $sphinx->query('abdul','test1');
它只返回 112 条记录。有没有办法在 Sphinx 中获得与 MySql Query 相同的记录?