SolrDisMaxQuery::setBigramPhraseFields

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

SolrDisMaxQuery::setBigramPhraseFieldsSets Bigram Phrase Fields and their boosts (and slops) using pf2 parameter

설명

public SolrDisMaxQuery SolrDisMaxQuery::setBigramPhraseFields ( string $fields )

Sets Bigram Phrase Fields (pf2) and their boosts (and slops)

인수

fields

Fields boosts (slops)

반환값

SolrDisMaxQuery

예제

Example #1 SolrDisMaxQuery::setBigramPhraseFields() example

<?php
$dismaxQuery 
= new SolrDisMaxQuery("lucene");
$dismaxQuery->setBigramPhraseFields("cat~5.1^2 feature^4.5");
echo 
$dismaxQuery.PHP_EOL;

?>

위 예제의 출력 예시:

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

참고

add a note add a note

User Contributed Notes

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