如何通过在弹性搜索中指定其字段值来查找文档的术语统计信息

时间:2015-11-26 04:12:41

标签: elasticsearch

我是弹性搜索的新手。我需要通过指定包含特定值的字段来从文档中获取术语统计信息。我把以下类型的文件放到elasticsearch上。

PUT /twitter/tweet/1
{
    "user" : "ABC",
    "post_date" : "2015-11-25T14:12:12",
    "message" : "this is my first tweet."
}

现在我想得到每个Document的字段“message”的术语统计信息,其中“user”字段包含值“ABC”。我想通过Java来做到这一点。首先,我想知道如何为此编写查询。

0 个答案:

没有答案