SolrDisMaxQuery::setTrigramPhraseFields

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

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

Descrierea

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

Directly Sets Trigram Phrase Fields (pf3 parameter)

Parametri

fields

Trigram Phrase Fields

Valorile întoarse

SolrDisMaxQuery

Exemple

Example #1 SolrDisMaxQuery::setTrigramPhraseFields() example

<?php

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

?>

Exemplul de mai sus va afișa:

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

A se vedea și

add a note add a note

User Contributed Notes

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