我是弹性搜索的新手。我需要通过指定包含特定值的字段来从文档中获取术语统计信息。我把以下类型的文件放到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来做到这一点。首先,我想知道如何为此编写查询。