SolrDisMaxQuery::setTrigramPhraseFields

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

SolrDisMaxQuery::setTrigramPhraseFieldsDirectly Sets Trigram Phrase Fields (pf3 parameter)

Descrição

public SolrDisMaxQuery::setTrigramPhraseFields(string $fields): SolrDisMaxQuery

Directly Sets Trigram Phrase Fields (pf3 parameter)

Parâmetros

fields

Trigram Phrase Fields

Valor Retornado

SolrDisMaxQuery

Exemplos

Exemplo #1 SolrDisMaxQuery::setTrigramPhraseFields() example

<?php

$dismaxQuery
= new SolrDisMaxQuery('lucene');
$dismaxQuery->setTrigramPhraseFields('cat~5.1^2 feature^4.5');
echo
$dismaxQuery.PHP_EOL;

?>

O exemplo acima produzirá:

q=lucene&defType=edismax&pf3=cat~5.1^2 feature^4.5

Veja Também

add a note add a note

User Contributed Notes

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