SolrDisMaxQuery::setUserFields

(No version information available, might only be in Git)
Sets User Fields parameter (uf)
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.

Parameters:
fields

Fields names separated by space

This parameter supports wildcards.

Returns:

SolrDisMaxQuery

Examples:
SolrDisMaxQuery::setUserFields() example
<?php

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

?>

The above example will output something similar to:

q=lucene&defType=edismax&uf=field1 field2 *_txt
See also:

SolrDisMaxQuery::addUserField() -

SolrDisMaxQuery::removeUserField() -

doc_php
2016-02-24 16:11:48
Comments
Leave a Comment

Please login to continue.