GoLang SolrDisMaxQuery::setTrigramPhraseSlop

request it (314)
GoLang replacement for PHP's SolrDisMaxQuery::setTrigramPhraseSlop [edit | history]



Do you know a GoLang replacement for PHP's SolrDisMaxQuery::setTrigramPhraseSlop? Write it!

PHP SolrDisMaxQuery::setTrigramPhraseSlop

PHP original manual for SolrDisMaxQuery::setTrigramPhraseSlop [ show | php.net ]

SolrDisMaxQuery::setTrigramPhraseSlop

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

SolrDisMaxQuery::setTrigramPhraseSlopSets Trigram Phrase Slop (ps3 parameter)

Description

public SolrDisMaxQuery SolrDisMaxQuery::setTrigramPhraseSlop ( string $slop )

Sets Trigram Phrase Slop (ps3 parameter)

Parameters

slop

Phrase slop

Return Values

SolrDisMaxQuery

Examples

Example #1 SolrDisMaxQuery::setTrigramPhraseSlop() example

<?php

$dismaxQuery 
= new SolrDisMaxQuery('lucene');
$dismaxQuery->setTrigramPhraseSlop(2);
echo 
$dismaxQuery.PHP_EOL;

?>

The above example will output something similar to:

q=lucene&defType=edismax&ps3=2

See Also