当前位置: 首页>>代码示例>>PHP>>正文


PHP Query::setFacets方法代码示例

本文整理汇总了PHP中Elastica\Query::setFacets方法的典型用法代码示例。如果您正苦于以下问题:PHP Query::setFacets方法的具体用法?PHP Query::setFacets怎么用?PHP Query::setFacets使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Elastica\Query的用法示例。


在下文中一共展示了Query::setFacets方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testQuery

 /**
  * @group functional
  */
 public function testQuery()
 {
     $client = $this->_getClient();
     $nodes = $client->getCluster()->getNodes();
     if (!$nodes[0]->getInfo()->hasPlugin('geocluster-facet')) {
         $this->markTestSkipped('geocluster-facet plugin not installed');
     }
     $index = $this->_createIndex();
     $type = $index->getType('testQuery');
     $geoField = 'location';
     $type->setMapping(new Mapping($type, array($geoField => array('type' => 'geo_point', 'lat_lon' => true))));
     $doc = new Document(1, array('name' => 'item1', 'location' => array(20, 20)));
     $type->addDocument($doc);
     $doc = new Document(2, array('name' => 'item2', 'location' => array(20, 20)));
     $type->addDocument($doc);
     $doc = new Document(3, array('name' => 'item3', 'location' => array(20, 20)));
     $type->addDocument($doc);
     $index->refresh();
     $facet = new GeoCluster('clusters');
     $facet->setField($geoField)->setFactor(1)->setShowIds(false);
     $query = new Query();
     $query->setFacets(array($facet));
     $response = $type->search($query);
     $facets = $response->getFacets();
     $this->assertEquals(1, count($facets['clusters']['clusters']));
     $index->delete();
 }
开发者ID:MediaWiki-stable,项目名称:1.26.1,代码行数:30,代码来源:GeoClusterTest.php

示例2: testSetFacets

 /**
  * @group unit
  */
 public function testSetFacets()
 {
     $query = new Query();
     $facet = new Terms('text');
     $query->setFacets(array($facet));
     $data = $query->toArray();
     $this->assertArrayHasKey('facets', $data);
     $this->assertEquals(array('text' => array('terms' => array())), $data['facets']);
     $query->setFacets(array());
     $this->assertArrayNotHasKey('facets', $query->toArray());
 }
开发者ID:MediaWiki-stable,项目名称:1.26.0,代码行数:14,代码来源:QueryTest.php


注:本文中的Elastica\Query::setFacets方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。