Last active
October 23, 2018 16:11
-
-
Save radleta/e61f0fd71f638293119bad09251f4d93 to your computer and use it in GitHub Desktop.
Count Properties of Value Obj (Couchbase Reduce Function)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function (keys, values, rereduce) | |
{ | |
var reduced = {}; | |
for (var v in values) { | |
var val = values[v]; | |
for (var k in val) { | |
if (val[k]) { | |
if (rereduce) { | |
reduced[k] = (reduced[k] || 0) + (val[k] || 0); | |
} else { | |
reduced[k] = (reduced[k] || 0) + 1; | |
} | |
} | |
} | |
} | |
return reduced; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment