(No version information available, might only be in Git)
SolrDisMaxQuery::addBigramPhraseField — Ajoute un champ de bigramme de phrase (paramètre pf2)
$field
, string $boost
, string $slop
= ?): SolrDisMaxQueryAjoute un champ de bigramme de phrase (paramètre pf2) Format de sortie: champ~slop^boost OU champ^boost Slop est facultatif
field
boost
slop
Exemple #1 Exemple de SolrDisMaxQuery::addBigramPhraseField()
<?php
$dismaxQuery = new SolrDisMaxQuery("lucene");
$dismaxQuery
->addBigramPhraseField('cat', 2, 5.1)
->addBigramPhraseField('feature', 4.5)
;
echo $dismaxQuery;
?>
Résultat de l'exemple ci-dessus est similaire à :
q=lucene&defType=edismax&pf2=cat~5.1^2 feature^4.5