MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

So fragen Sie alle Filialdokumente ab

So machen Sie das mit dem Aggregation Framework (Sie müssen die gerade veröffentlichte Version 2.2 verwenden).

db.stories.aggregate(
[
    {
        "$unwind" : "$tags"
    },
    {
        "$group" : {
            "_id" : "$tags.tagname",
            "total" : {
                "$sum" : 1
            }
        }
    },
    {
        "$sort" : {
            "total" : -1
        }
    }
])

Ihr Ergebnis sieht folgendermaßen aus:

{
    "result" : [
        {
            "_id" : "fairytale",
            "total" : 3
        },
        {
            "_id" : "funny",
            "total" : 2
        },
        {
            "_id" : "silly",
            "total" : 1
        },
        {
            "_id" : "fox",
            "total" : 1
        }
    ],
    "ok" : 1
}