(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:
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:
Please login to continue.