SolrDisMaxQuery::addTrigramPhraseField

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

SolrDisMaxQuery::addTrigramPhraseFieldAdds a Trigram Phrase Field (pf3 parameter)

Description

public SolrDisMaxQuery::addTrigramPhraseField(string $field, string $boost, string $slop = ?): SolrDisMaxQuery

Adds a Trigram Phrase Field (pf3 parameter)

Parameters

field

Field Name

boost

Field Boost

slop

Field Slop

Return Values

SolrDisMaxQuery

Examples

Example #1 SolrDisMaxQuery::addTrigramPhraseField() example

<?php

$dismaxQuery
= new SolrDisMaxQuery('lucene');
$dismaxQuery
->addTrigramPhraseField('cat', 2, 5.1)
->
addTrigramPhraseField('feature', 4.5)
;
echo
$dismaxQuery.PHP_EOL;

?>

The above example will output:

q=lucene&defType=%s&pf3=cat~5.1^2 feature^4.5

See Also

add a note add a note

User Contributed Notes

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