SolrDisMaxQuery::setTrigramPhraseSlop

(没有版本信息可用,可能仅在 Git 中)

SolrDisMaxQuery::setTrigramPhraseSlop设置三元组短语松弛度 (ps3 参数)

说明

public SolrDisMaxQuery::setTrigramPhraseSlop(string $slop): SolrDisMaxQuery

设置三元组短语松弛度 (ps3 参数)

参数

slop

短语松弛度

返回值

SolrDisMaxQuery

示例

示例 #1 SolrDisMaxQuery::setTrigramPhraseSlop() 示例

<?php

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

?>

上面的示例将输出类似以下内容

q=lucene&defType=edismax&ps3=2

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top