(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
1 2 3 4 5 6 7 | <?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.