createSelect(); // get the dismax component and set a boost query $dismax = $query->getDisMax(); // override the default setting of 'dismax' to enable 'edismax' $dismax->setQueryParser('edismax'); // this query is now a dismax query $query->setQuery('memory -printer'); // this executes the query and returns the result $resultset = $client->select($query); // display the total number of documents found by solr echo 'NumFound: '.$resultset->getNumFound(); // show documents using the resultset iterator foreach ($resultset as $document) { echo '
' . $field . ' | ' . $value . ' |
---|