Sphinx MySQL search seems to have a limit to the number of items allowed as an array for SetFilter.
I had attempted to use:
foreach (array_chunk($venues, 4096) as $value)
{
$sphinx->SetFilter('venue', $value);
}
But upon checking, this doesn't seem to fix the problem.
Any ideas how using Sphinx and the PHP library I am able to get around this limit?