MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Mongodb sortuje dokumenty według złożonej obliczonej wartości

Twój $temp_score i $temp_votes nie istnieją jeszcze w Twoim $divide .

Możesz zrobić kolejny $project :

db.user.aggregate([{
    "$project": {
        'temp_score': {
            "$add": ["$total_score", 100],
        },
        'temp_votes': {
            "$add": ["$total_votes", 20],
        }
    }
}, {
    "$project": {
        'temp_score':1,
        'temp_votes':1,
        'weight': {
            "$divide": ["$temp_score", "$temp_votes"]
        }
    }
}])

lub ponowne obliczenie temp_score i temp_votes w $divide :

db.user.aggregate([{
    "$project": {
        'temp_score': {
            "$add": ["$total_score", 100],
        },
        'temp_votes': {
            "$add": ["$total_votes", 20],
        },
        'weight': {
            "$divide": [
                { "$add": ["$total_score", 100] },
                { "$add": ["$total_votes", 20] }
            ]
        }
    }
}]);

Możesz to również zrobić w jednym $project za pomocą $let operator które zostaną użyte do utworzenia 2 zmiennych temp_score i temp_votes . Ale wyniki będą dostępne w jednym polu (tutaj total ) :

db.user.aggregate([{
    $project: {
        total: {
            $let: {
                vars: {
                    temp_score: { $add: ["$total_score", 100] },
                    temp_votes: { $add: ["$total_votes", 20] }
                },
                in : {
                    temp_score: "$$temp_score",
                    temp_votes: "$$temp_votes",
                    weight: { $divide: ["$$temp_score", "$$temp_votes"] }
                }
            }
        }
    }
}])



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Agregacja Mongodb $grupa, ogranicz długość tablicy

  2. model mangusty, tablica ciągów, tablica struktury obiektów

  3. MongoDB $grupa (plac zabaw Mongo)

  4. Mongodb - liczba elementów przy użyciu addToSet

  5. Dlaczego ten db.eval -> array.push miałby być wykonywany dwukrotnie dla niektórych rekordów?