Dal tuo codice java ho letto
come
project only type[1..120] fields and number of such fields in the document
Con questa ipotesi, puoi map-reduce come segue:
db.testcol.mapReduce(
function(){
value = {count:0};
for (i = 1; i <= 120; i++) {
key = "type" + i
if (this.hasOwnProperty(key)) {
value[key] = this[key];
value.count++
}
}
if (value.count > 0) {
emit(this._id, value);
}
},
function(){
//nothing to reduce
},
{
out:{inline:true}
});
out:{inline:true}
funziona per piccoli set di dati, quando il risultato rientra in limite di 16 Mb . Per risposte più ampie devi output
a una raccolta, che puoi interrogare e ripetere come al solito.