(No version information available, might only be in Git)
Adds a Phrase Field (pf parameter)
public SolrDisMaxQuery SolrDisMaxQuery::addPhraseField ( string $field, string $boost [, string $slop ] )
Adds a Phrase Field (pf parameter)
Parameters:
field
field name
boost
field name
slop
field name
Returns:
Examples:
SolrDisMaxQuery::addPhraseField() example
1 2 3 4 5 6 7 8 9 | <?php $dismaxQuery = new SolrDisMaxQuery( "lucene" ); $dismaxQuery ->addPhraseField( 'cat' , 3, 1) ->addPhraseField( 'third' , 4, 2) ->addPhraseField( 'source' , 55) ; echo $dismaxQuery ; ?> |
The above example will output something similar to:
q=lucene&defType=edismax&pf=cat~1^3 third~2^4 source^55
See also:
Please login to continue.