作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个集合,其中每个文档看起来像这样
{access_key:'xxxxxxxxx', keyword: "banana", count:12, request_hour:"Thu Sep 30 2010 12:00:00 GMT+0000 (UTC)"}
{access_key:'yyyyyyyyy', keyword: "apple", count:25, request_hour:"Thu Sep 30 2010 12:00:00 GMT+0000 (UTC)", }
.....
要实现这一点:
SELECT keyword, sum(count) FROM keywords_counter WHERE access_key = 'xxxxxxxxx' GROUP BY 关键字
我这样做:
db.keywords_counter.group({key : {keyword:true},
cond : {access_key: "xxxxx"},
reduce : function(obj, prev){prev.total += obj.count},
initial : {total:0}})
如何使用 map/reduce 实现相同的目的? [我是一个 map/reduce 初学者,正在努力思考这个概念。]
最佳答案
找到解决方案:
map = function(){ emit(this.keyword, {count: this.count}); }
reduce = function(key, values){
var total = 0;
for (var i=0; i < values.length, i++) { total += values[i].count; }
return {count: total};
}
db.keywords_counter.mapReduce(map, reduce, {query:{access_key: 'xxxxxxxxx'}})
关于MongoDB - 我如何将这个 group() 查询转换为 map/reduce,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3854033/
我是一名优秀的程序员,十分优秀!