update : 2015.11.03
php.shukuma.com

검색:
 
 
Sets Phrase Fields and their boosts (and slops) using pf2 parameter

SolrDisMaxQuery::setPhraseFields

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

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

설명

public SolrDisMaxQuery SolrDisMaxQuery::setPhraseFields ( string $fields )

Sets Phrase Fields (pf) and their boosts (and slops)

인수

fields

Fields, boosts [, slops]

반환값

SolrDisMaxQuery

예제

Example #1 SolrDisMaxQuery::setPhraseFields() example

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

?>

위 예제의 출력 예시:

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

참고