MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come utilizzare le variabili in MongoDB Map-reduce map function

Come sottolineato da @Dave Griffith, puoi usare l'scope parametro di mapReduce funzione.

Ho faticato un po' a capire come passarlo correttamente alla funzione perché, come sottolineato da altri, la documentazione non è molto dettagliata. Alla fine, mi sono reso conto che mapReduce si aspetta 3 parametri:

  • funzione mappa
  • funzione di riduzione
  • oggetto con uno o più parametri definiti nel documento

Alla fine, sono arrivato al seguente codice in Javascript:

// I define a variable external to my map and to my reduce functions
var KEYS = {STATS: "stats"};

function m() {
    // I use my global variable inside the map function
    emit(KEYS.STATS, 1);
}

function r(key, values) {
    // I use a helper function
    return sumValues(values);
}

// Helper function in the global scope
function sumValues(values) {
    var result = 0;
    values.forEach(function(value) {
        result += value;
    });
    return result;
}

db.something.mapReduce(
    m,
    r,
    {
         out: {inline: 1},
         // I use the scope param to pass in my variables and functions
         scope: {
             KEYS: KEYS,
             sumValues: sumValues // of course, you can pass function objects too
         }
    }
);