我有一个看起来像这样的集合:
{
"_id": "id0",
"name": "...",
"saved_things": [
{ ... },
{ ... },
{ ... },
]
}
{
"_id": "id1",
"name": "...",
"saved_things": [
{ ... },
]
}
{
"_id": "id2",
"name": "...",
"saved_things": [
{ ... },
]
}
ETC...
我想使用 mongodb 的聚合框架来得出一个直方图结果,该结果告诉有多少用户有一定数量的saved_things
. 例如,对于上面的数据集,它可能会返回如下内容:
{ "_id": 1, "count": 2 },
{ "_id": 3, "count": 1 }
我尝试了各种聚合函数组合,如下所示,但没有一个能正确解决。(我觉得我要解决这个非常错误的问题。)
collection.aggregate([
{ $unwind: "$saved_things" },
{ $group: "$_id", count: { $sum: 1 } } },
{ $group: "$count", number: { $sum: 1 } } },
{ $sort: { number: -1 } }
], function(err, result) {
console.log(result);
});
使用 Mongo 的聚合框架是否可以做到这一点,还是使用 map reduce 功能会更好?