map-reduce-matrix-multiplication-js
示例:字数统计
让我们实现 MapReduce 计算模型的经典示例:通过 MapReduce 计算单词。
使用mapReduce函数来自: :
地图功能:
function map ( row , emit ) {
var words = row . split ( ' ' ) ;
for ( var i in words ) {
var word = words [ i ] ;
emit ( word , 1 ) ;
}
}
减少功能:
function reduce ( key , values , output ) {
var totalCount = 0 ;
for ( var i in values ) {
totalCount += values [
评论0
最新资源