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
1
2
3
4
5
6
7
8
<?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
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.