SolrQuery::addFilterQuery

(PECL solr >= 0.9.2)

SolrQuery::addFilterQuerySpecifies a filter query

Beschreibung

public SolrQuery::addFilterQuery(string $fq): SolrQuery

Specifies a filter query

Parameter-Liste

fq

The filter query

Rückgabewerte

Returns the current SolrQuery object.

Beispiele

Beispiel #1 SolrQuery::addFilterQuery() example

<?php

$options
= array
(
'hostname' => SOLR_SERVER_HOSTNAME,
'login' => SOLR_SERVER_USERNAME,
'password' => SOLR_SERVER_PASSWORD,
'port' => SOLR_SERVER_PORT,
);

$client = new SolrClient($options);

$query = new SolrQuery();

$query->setQuery('*:*');

$query->addFilterQuery('color:blue,green');

$query_response = $client->query($query);

$response = $query_response->getResponse();

print_r($response['facet_counts']['facet_fields']);

?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

&fq=color:blue,green

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top