SolrDisMaxQuery::setBigramPhraseSlop

(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:

SolrDisMaxQuery

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
doc_php
2016-02-24 16:11:46
Comments
Leave a Comment

Please login to continue.