In order to work with Zend\Paginator you need to implement your own paginator adapter (in a similar way the Zend\Paginator\Adapter\DbSelect does).
Also, you can use:
$search = new SphinxSearch\Search(....);
//.... your query .....
$count = $search->showMeta('total_found');
In order to work with
Zend\Paginator
you need to implement your own paginator adapter (in a similar way theZend\Paginator\Adapter\DbSelect
does). Also, you can use:to the get the total results count.
Let me know if that will help you.