elasticsearch 查询样例程序猿的东西 / 作者: 治军 / 发表评论 聚合查询并设置返回的数据量,该语句查询在某话题下发图数量最多的前50人。 GET /images/_search { "query": { "bool": { "must": [ { "match_phrase": { "content.topic": "#点赞#" } }, ... ] } }, "aggregations" : { "users" : { "terms" : { "field": "user_id", "size": 50 } } } } 赞微海报分享