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

Sorter efter array længde

Brug aggregeringsrammen med hjælp fra $size operatør fra MongoDB 2.6 og opefter:

db.collection.aggregate([
    // Project with an array length
    { "$project": {
        "title": 1,
        "author": 1,
        "votes": 1,
        "length": { "$size": "$votes" }
    }},

    // Sort on the "length"
    { "$sort": { "length": -1 } },

    // Project if you really want
    { "$project": {
        "title": 1,
        "author": 1,
        "votes": 1,
    }}
])

Simpelt nok.

Hvis du ikke har en version 2.6 tilgængelig, kan du stadig gøre dette med lidt mere arbejde:

db.collection.aggregate([
    // unwind the array
    { "$unwind": "$votes" },

    // Group back
    { "$group": {
        "_id": "$id",
        "title": { "$first": "$title" },
        "author": { "$first": "$author" },
        "votes": { "$push": "$votes" },
        "length": { "$sum": 1 }
    }},

    // Sort again
    { "$sort": { "length": -1 } },

    // Project if you want to
    { "$project": {
        "title": 1,
        "author": 1,
        "votes": 1,
    }}
])

Det er stort set det.



  1. Reducer udførelsestiden for sidekiq-job

  2. Hvordan bruger man $lookup som INNER JOIN i MongoDB Aggregation?

  3. $facetsammenlægning i monogdb

  4. Mongoose opdatering/upsert?