When I try simple MySql Query
select id
from `contacts`
where name LIKE '%abdul%'
OR email LIKE '%abdul%'
OR phone LIKE '%abdul%'
it returns 278 records from my database where as when I search through Sphinx search like this
$sphinx = new SphinxClient();
$sphinx->setServer('localhost',9312);
$sphinx->setLimits(0,1000);
$sphinx->setMatchMode(SPH_MATCH_EXTENDED2);
$result = $sphinx->query('abdul','test1');
It returns only 112 records. Is there any way to get same record as MySql Query in Sphinx?