0

简化来讲,设数据集

{“name”: “test”,”count”: {“text”: 1,”face”: 2}}

{“name”: “test”,”count”: {“image”: 3,”face”: 4}}

{“name”: “test”,”count”: {“text”:5,”image”: 6}}

我希望获得的查询结果

{“name”: “test”,”count”: {“text”:6, “face”: 6, “image”: 9}}

是否可以使用mongodb的查询直接做到呢?或者我需要获取所有的记录依次求和?(客户端使用golang,需要考虑驱动适配)

已回答的问题