SolrDisMaxQuery
PHP Manual

SolrDisMaxQuery::setUserFields

(Não há informação de versão disponível, talvez apenas no SVN)

SolrDisMaxQuery::setUserFieldsSets User Fields parameter (uf)

Descrição

public SolrDisMaxQuery SolrDisMaxQuery::setUserFields ( string $fields )

Sets User Fields parameter (uf)

User Fields: Specifies which schema fields the end user shall be allowed to query.

Parâmetros

fields

Fields names separated by space

This parameter supports wildcards.

Valor Retornado

SolrDisMaxQuery

Exemplos

Exemplo #1 SolrDisMaxQuery::setUserFields() example

<?php

$dismaxQuery 
= new SolrDisMaxQuery('lucene');
$dismaxQuery->setUserFields('field1 field2 *_txt');
echo 
$dismaxQuery.PHP_EOL;

?>

O exemplo acima irá imprimir algo similar à:

q=lucene&defType=edismax&uf=field1 field2 *_txt

Veja Também


SolrDisMaxQuery
PHP Manual