Eliminated dependency on $this->search_stats['sphinx_results'] when not doing debugging. Created a new class var $this->total_found to replace it. I'm trying to get rid of $this->search_stats['sphinx_results'] because it contains $this->search_stats['sphinx_results']['matches'], a 1000 element array, where each element can be a substantial portion of 1KB or more.
Cascading changes in class-go-sphinx-test.php due to the result array format change. I should have seen and fixed this in an earlier pull.
$this->search_stats['sphinx_results']
when not doing debugging. Created a new class var$this->total_found
to replace it. I'm trying to get rid of$this->search_stats['sphinx_results']
because it contains$this->search_stats['sphinx_results']['matches']
, a 1000 element array, where each element can be a substantial portion of 1KB or more.class-go-sphinx-test.php
due to the result array format change. I should have seen and fixed this in an earlier pull.