本文整理汇总了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();
}
示例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());
}