(No version information available, might only be in Git)
Sets Bigram Phrase Slop (ps2 parameter)
public SolrDisMaxQuery SolrDisMaxQuery::setBigramPhraseSlop ( string $slop )
Sets Bigram Phrase Slop (ps2 parameter). A default slop for Bigram phrase fields.
Parameters:
slop
Sets Bigram Phrase Slop (ps2 parameter). A default slop for Bigram phrase fields.
Returns:
Examples:
SolrDisMaxQuery::setBigramPhraseSlop() example
<?php $dismaxQuery = new SolrDisMaxQuery('lucene'); $dismaxQuery->setBigramPhraseSlop(5); echo $dismaxQuery.PHP_EOL; ?>
The above example will output something similar to:
q=lucene&defType=edismax&ps2=5
Please login to continue.