elasticsearch使用php API获取索引中的文档总数

时间:2016-10-06 18:06:50

标签: php elasticsearch

我创建了elasticsearch索引:

$es = Elasticsearch\ClientBuilder::create()->build();

$params = [
    'index'=>'articles',
    'type'  => 'article'
];

for ($i=0; $i<30; $i++) {
    $params['body'] = [ 'title'=>'title '.$i, 'body'=>'text '.$i ];
    $response = $es->index($params);
}

因此,添加了30个文档,现在我需要获取记录总数。这工作

$search_params= [
    'index'=>'articles',
    'type'  => 'article',
];

$query = $es->search($search_params);

echo $query['hith']['total'];

但正如我所读到的,使用直接计数_count方法更有效率。

我的问题是,我不明白如何在php API中实现_count

尝试:

$search_params= [
    'index'=>'articles',
    'type'  => 'article',
    'body' => [ 
        'query'  => ['_count'=>[] ] 
    ]
];

$query = $es->search($search_params);

以及其他几种变体,但没有正确的一种语法。

帮助?

1 个答案:

答案 0 :(得分:5)