SolrDisMaxQuery::addQueryField
(No version information available, might only be in Git)
SolrDisMaxQuery::addQueryField — Add a query field with optional boost (qf parameter)
説明
Add a query field with optional boost (qf parameter)
パラメータ
field
-
field name
boost
-
Boost value. Boosts documents with matching terms.
戻り値
例
例1 SolrDisMaxQuery::addQueryField() example
<?php
$dismaxQuery = new SolrDisMaxQuery("lucene");
$dismaxQuery
->addQueryField("location", 4)
->addQueryField("price")
->addQueryField("sku")
->addQueryField("title",3.4)
;
echo $dismaxQuery;
?>
上の例の出力は、 たとえば以下のようになります。
q=lucene&defType=edismax&qf=location^4 price sku title^3.4
参考
- SolrDisMaxQuery::removeQueryField() - Removes a Query Field (qf parameter)
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google