I've just started using Solr and I'm testing it out on OSX using:
Apache 2.2.26 PHP 5.5.20 from here This version of PHP came with the solr extension version 0.9.11.
Searching through the documentation here, I found that it has documentation for a SolrDisMaxQuery class. However, when attempting to instantiate an instance of this class
$query = new SolrDisMaxQuery('total');
I received an error
Fatal error: Class 'SolrDisMaxQuery' not found in /Users/tomsweeney/public_html/index.php on line 14
I know Solr is installed and working because the following works properly:
$query = new SolrQuery('total');
I attempted installing the latest extension version (2.0.0), verified that it was properly installed with solr_get_version(), but the error still persists.
I even searched through the full source code of the extension for "dismax" but it doesn't exist.
Did this class ever exist in this extension? Or should I just switch to something like Solarium?