私が読んだあなたのJavaコードから
として
project only type[1..120] fields and number of such fields in the document
この前提で、map-reduce を実行できます。 次のように:
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}
結果がoutput
する必要があります コレクションに移動します。これは、通常どおりクエリと反復を行うことができます。