PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

SolrQuery::addFacetField - Adds another field to the facet | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

SolrQuery::addFacetField

(PECL solr >= 0.9.2)

SolrQuery::addFacetFieldAdds another field to the facet

説明

public SolrQuery SolrQuery::addFacetField ( string $field )

Adds another field to the facet

パラメータ

field

The name of the field

返り値

Returns the current SolrQuery object, if the return value is used.

例1 SolrQuery::addFacetField() example

<?php

$options 
= array
(
    
'hostname' => SOLR_SERVER_HOSTNAME,
    
'login'    => SOLR_SERVER_USERNAME,
    
'password' => SOLR_SERVER_PASSWORD,
    
'port'     => SOLR_SERVER_PORT,
);

$client = new SolrClient($options);

$query = new SolrQuery();

$query->setQuery($query);

$query->addField('price')->addField('color');

$query->setFacet(true);

$query->addFacetField('price')->addFacetField('color');

$query_response $client->query($query);

$response $query_response->getResponse();

print_r($response['facet_counts']['facet_fields']);

?>

上の例の出力は、 たとえば以下のようになります。


SolrObject Object
(
    [color] => SolrObject Object
        (
            [blue] => 20
            [green] => 100
        )

)


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「SolrQuery::addFacetField - Adds another field to the facet」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | SolrQuery::addFacetField - Adds another field to the facet」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: