SolrDisMaxQuery::setPhraseFields

(No version information available, might only be in Git)

SolrDisMaxQuery::setPhraseFieldsSets Phrase Fields and their boosts (and slops) using pf2 parameter

Descrierea

public SolrDisMaxQuery::setPhraseFields ( string $fields ) : SolrDisMaxQuery

Sets Phrase Fields (pf) and their boosts (and slops)

Parametri

fields

Fields, boosts [, slops]

Valorile întoarse

SolrDisMaxQuery

Exemple

Example #1 SolrDisMaxQuery::setPhraseFields() example

<?php
$dismaxQuery 
= new SolrDisMaxQuery("lucene");
$dismaxQuery->setPhraseFields("cat~5.1^2 feature^4.5");
echo 
$dismaxQuery.PHP_EOL;

?>

Exemplul de mai sus va afișa ceva similar cu:

q=lucene&defType=edismax&pf=cat~5.1^2 feature^4.5

A se vedea și

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top