Files
Carsten Blüm 893179e5bd Add missing path in constructor options
Without the path, the example should fail on a multi-core setup
2015-09-10 09:44:04 +02:00

24 lines
451 B
PHP

<?php
include "bootstrap.php";
$options = array(
'hostname' => SOLR_SERVER_HOSTNAME,
'login' => SOLR_SERVER_USERNAME,
'password' => SOLR_SERVER_PASSWORD,
'port' => SOLR_SERVER_PORT,
'path' => SOLR_SERVER_PATH,
);
$client = new SolrClient($options);
$query = new SolrQuery();
$query->setTerms(true);
$query->setTermsField('cat');
$updateResponse = $client->query($query);
print_r($updateResponse->getResponse());