summaryrefslogtreecommitdiff
path: root/src/mongo/shell/mr.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/shell/mr.js')
-rw-r--r--src/mongo/shell/mr.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mongo/shell/mr.js b/src/mongo/shell/mr.js
index 7b0814dd557..fbc7d2bbf17 100644
--- a/src/mongo/shell/mr.js
+++ b/src/mongo/shell/mr.js
@@ -10,12 +10,12 @@ MR.init = function(){
$numReduces = 0;
$numReducesToDB = 0;
gc(); // this is just so that keep memory size sane
-}
+};
MR.cleanup = function(){
MR.init();
gc();
-}
+};
MR.emit = function(k,v){
$numEmits++;
@@ -27,7 +27,7 @@ MR.emit = function(k,v){
}
data.values[data.count++] = v;
$max = Math.max( $max , data.count );
-}
+};
MR.doReduce = function( useDB ){
$numReduces++;
@@ -67,7 +67,7 @@ MR.doReduce = function( useDB ){
}
}
}
-}
+};
MR.check = function(){
if ( $max < 2000 && $arr.length < 1000 ){
@@ -83,7 +83,7 @@ MR.check = function(){
reset_num();
gc();
return 2;
-}
+};
MR.finalize = function(){
tempcoll.find().forEach(
@@ -92,4 +92,4 @@ MR.finalize = function(){
tempcoll.save( z );
}
);
-}
+};