1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
--TEST--
SolrClient::query() - Terms component
--SKIPIF--
<?php
include 'skip.if.server_not_configured.inc';
?>
--FILE--
<?php
require_once "bootstrap.inc";
$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('name');
$query->setTermsLowerBound('a');
$query->setTermsSort(SolrQuery::TERMS_SORT_INDEX);
$query_response = $client->query($query);
echo $query_response->getRequestUrl() .PHP_EOL;
print_r($query_response->getResponse());
?>
--EXPECTF--
http://%s/solr/collection1/terms/?version=2.2&indent=on&wt=xml
SolrObject Object
(
[responseHeader] => SolrObject Object
(
[status] => %d
[QTime] => %d
)
[terms] => SolrObject Object
(
[name] => SolrObject Object
(
[iPod & iPod Mini USB 2.0 Cable] => %d
)
)
)
|