SolrDisMaxQuery::addBoostQuery
(No version information available, might only be in Git)
SolrDisMaxQuery::addBoostQuery — Adds a boost query field with value and optional boost (bq parameter)
Beschreibung
$field
, string $value
, string $boost
= ?): SolrDisMaxQueryAdds a Boost Query field with value [and boost] (bq parameter)
Parameter-Liste
-
field
-
-
value
-
-
boost
-
Rückgabewerte
Beispiele
Beispiel #1 SolrDisMaxQuery::addBoostQuery() example
<?php
$dismaxQuery = new SolrDisMaxQuery("lucene");
$dismaxQuery
->addBoostQuery('cat', 'clothing', 2)
->addBoostQuery('cat', 'electronics', 5.1)
;
echo $dismaxQuery.PHP_EOL;
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
q=lucene&defType=edismax&bq=cat:clothing^2 cat:electronics^5.1
Siehe auch
- SolrDisMaxQuery::removeBoostQuery() - Removes a boost query partial by field name (bq)
- SolrDisMaxQuery::setBoostQuery() - Directly Sets Boost Query Parameter (bq)