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

mongodb mehrere Aggregationen in einem einzigen Vorgang

Ab Mongo 3.4 , der $facet Die Aggregationsphase vereinfacht diese Art von Anwendungsfall erheblich, indem mehrere Aggregationspipelines innerhalb einer einzigen Phase für denselben Satz von Eingabedokumenten verarbeitet werden:

// { "item" : "i1", "category" : "c1", "brand" : "b1" }
// { "item" : "i2", "category" : "c2", "brand" : "b1" }
// { "item" : "i3", "category" : "c1", "brand" : "b2" }
// { "item" : "i4", "category" : "c2", "brand" : "b1" }
// { "item" : "i5", "category" : "c1", "brand" : "b2" }
db.collection.aggregate(
  { $facet: {
      categories: [{ $group: { _id: "$category", count: { "$sum": 1 } } }],
      brands:     [{ $group: { _id: "$brand",    count: { "$sum": 1 } } }]
  }}
)
// {
//   "categories" : [
//     { "_id" : "c1", "count" : 3 },
//     { "_id" : "c2", "count" : 2 }
//   ],
//   "brands" : [
//     { "_id" : "b1", "count" : 3 },
//     { "_id" : "b2", "count" : 2 }
//   ]
// }