SolrDisMaxQuery
PHP Manual

SolrDisMaxQuery::setUserFields

(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)

SolrDisMaxQuery::setUserFieldsSets 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.

パラメータ

fields

Fields names separated by space

This parameter supports wildcards.

返り値

SolrDisMaxQuery

例1 SolrDisMaxQuery::setUserFields() example

<?php

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

?>

上の例の出力は、 たとえば以下のようになります。

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

参考


SolrDisMaxQuery
PHP Manual