mirror of
https://github.com/php/pecl-search_engine-solr.git
synced 2026-03-23 22:52:07 +01:00
31 lines
631 B
PHP
31 lines
631 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->setFacet(true);
|
|
|
|
$query->addFacetField('cat')->addFacetField('name')->setFacetMinCount(2);
|
|
|
|
$query->setFacetMinCount(4, 'name');
|
|
|
|
$updateResponse = $client->query($query);
|
|
|
|
$response_array = $updateResponse->getResponse();
|
|
|
|
$facet_data = $response_array->facet_counts->facet_fields;
|
|
|
|
print_r($facet_data);
|