PHP Velho Oeste 2024

SolrQuery::addHighlightField

(PECL solr >= 0.9.2)

SolrQuery::addHighlightFieldMapea a hl.fl

Descripción

public SolrQuery::addHighlightField(string $field): SolrQuery

Mapea a hl.fl. Se usa para especificar que los trozos resaltados deberían ser generados para un campo en particular

Parámetros

field

Nombre del campo

Valores devueltos

Devuelve el objeto SolrQuery actual, si se usa el valor de retorno.

add a note add a note

User Contributed Notes 1 note

up
0
sanjeevk at euroblaze dot de
10 years ago
Hello all,

I have being working on filter using solr server. I got a problem in using addFilterQuery(). Below is my code snippet:-

        $query = new SolrQuery();

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

        $query->setStart(0);

        $query->setRows(50);

        $query->addFilterQuery('oxprice:[10 TO 100]');

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

        $response = $query_response->getResponse();

        print_r($response);exit;

Problem is I get data without filtering price range of 10 TO 100 ( I mean I get records without any filtering). Please help me find Solution..

Thanks In Advance.
To Top