使用MapReduce
考虑以下存储用户帖子的文档结构。该文档存储用户的user_name和发布状态。
{
"post_text": "jc2182 is an awesome website for tutorials",
"user_name": "mark",
"status":"active"
}
现在,我们将在我们的帖子集合上使用mapReduce函数来选择所有活动的帖子,根据user_name将它们分组,然后使用以下代码对每个用户的帖子数进行计数-
>db.posts.mapReduce(
function() { emit(this.user_id,1); },
function(key, values) {return Array.sum(values)}, {
query:{status:"active"},
out:"post_total"
}
)
上面的mapReduce查询输出以下结果-
{
"result" : "post_total",
"timeMillis" : 9,
"counts" : {
"input" : 4,
"emit" : 4,
"reduce" : 2,
"output" : 2
},
"ok" : 1,
}
结果显示,总共有4个文档与查询匹配(status:"active"),map函数发出了4个具有键值对的文档,最后reduce函数将具有相同键的映射文档分为2个。要查看此mapReduce查询的结果,请使用find运算符-
>db.posts.mapReduce(
function() { emit(this.user_id,1); },
function(key, values) {return Array.sum(values)}, {
query:{status:"active"},
out:"post_total"
}
).find()
上面的查询给出以下结果,表明用户tom和mark都有两个处于活动状态的帖子-
{ "_id" : "tom", "value" : 2 }
{ "_id" : "mark", "value" : 2 }
以类似的方式,MapReduce查询可用于构造大型复杂的聚合查询。自定义Javascript函数的使用利用了MapReduce,它非常灵活且功能强大。