createSelect(); // add distributed search settings // see http://wiki.apache.org/solr/DistributedSearch#Distributed_Search_Example for setting up two solr instances $distributedSearch = $query->getDistributedSearch(); $distributedSearch->addShard('shard1', 'localhost:8983/solr'); $distributedSearch->addShard('shard2', 'localhost:7574/solr'); // 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 . ' |
---|