SolrDisMaxQuery::addPhraseField
(No version information available, might only be in Git)
SolrDisMaxQuery::addPhraseField — Adds a Phrase Field (pf parameter)
Beschreibung
$field
, string $boost
, string $slop
= ?): SolrDisMaxQueryAdds a Phrase Field (pf parameter)
Parameter-Liste
-
field
-
field name
-
boost
-
-
slop
-
Rückgabewerte
Beispiele
Beispiel #1 SolrDisMaxQuery::addPhraseField() example
<?php
$dismaxQuery = new SolrDisMaxQuery("lucene");
$dismaxQuery
->addPhraseField('cat', 3, 1)
->addPhraseField('third', 4, 2)
->addPhraseField('source', 55)
;
echo $dismaxQuery;
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
q=lucene&defType=edismax&pf=cat~1^3 third~2^4 source^55
Siehe auch
- SolrDisMaxQuery::removePhraseField() - Removes a Phrase Field (pf parameter)
- SolrDisMaxQuery::setPhraseFields() - Sets Phrase Fields and their boosts (and slops) using pf2 parameter