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

Ordinamento di mongodb in base all'algoritmo di classificazione reddit

Bene, puoi usare mapReduce:

var mapper = function() {

    function hot(ups,downs,date){
        var score = ups - downs;
        var order = log10(Math.max(Math.abs(score), 1));
        var sign = score>0 ? 1 : score<0 ? -1 : 0;
        var seconds = epochSeconds(date) - 1134028003;
        var product = order + sign * seconds / 45000;
        return Math.round(product*10000000)/10000000;
    }

   function log10(val){
      return Math.log(val) / Math.LN10;
   }

   function epochSeconds(d){
       return (d.getTime() - new Date(1970,1,1).getTime())/1000;
   }

   emit( hot(this.ups, this.downs, this.date), this );

};

Ed esegui il mapReduce (senza riduttore):

db.collection.mapReduce(
    mapper,
    function(){},
    {
        "out": { "inline": 1 }
    }
)

E ovviamente presumendo che la tua "collezione" abbia i campi per ups , downs e date . Ovviamente le "classifiche" devono essere emesse in modo "unico", altrimenti è necessario un "riduttore" per ordinare i risultati.

Ma in generale dovrebbe funzionare.