SolrDisMaxQuery
PHP Manual

SolrDisMaxQuery::setTrigramPhraseSlop

(バージョン情報なし。おそらく SVN 版にしか存在しないでしょう)

SolrDisMaxQuery::setTrigramPhraseSlopSets Trigram Phrase Slop (ps3 parameter)

説明

public SolrDisMaxQuery SolrDisMaxQuery::setTrigramPhraseSlop ( string $slop )

Sets Trigram Phrase Slop (ps3 parameter)

パラメータ

slop

Phrase slop

返り値

SolrDisMaxQuery

例1 SolrDisMaxQuery::setTrigramPhraseSlop() example

<?php

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

?>

上の例の出力は、 たとえば以下のようになります。

q=lucene&defType=edismax&ps3=2

参考


SolrDisMaxQuery
PHP Manual