Dutch PHP Conference 2025 - Call For Papers

SolrDisMaxQuery::setQueryPhraseSlop

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

SolrDisMaxQuery::setQueryPhraseSlopSpecifies the amount of slop permitted on phrase queries explicitly included in the user's query string (qf parameter)

Опис

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

The Query Phrase Slop is the amount of slop permitted on phrase queries explicitly included in the user's query string with the qf parameter.

slop refers to the number of positions one token needs to be moved in relation to another token in order to match a phrase specified in a query.

Параметри

slop

Amount of slop

Значення, що повертаються

SolrDisMaxQuery

Приклади

Приклад #1 SolrDisMaxQuery::setQueryPhraseSlop() example

<?php

$dismaxQuery
= new SolrDisMaxQuery();
$dismaxQuery->setQueryPhraseSlop(3);
echo
$dismaxQuery;
?>

Поданий вище приклад виведе щось схоже на:

defType=edismax&qs=3
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top