Suche…


Bemerkungen

Server Aggregation

Durchschnittliche Aggregationsabfragen in Meteor

Ist es möglich, eine "echte" Mongodb-Bibliothek für die Verwendung auf der * Server * -Seite nur in Meteor 0.6 zu packen

Client Aggregation (Minimongo)

https://github.com/utunga/pocketmeteor/tree/master/packages/mongowrapper

Server Aggregation

Andrew Maos Lösung. Durchschnittliche Aggregationsabfragen in Meteor

Meteor.publish("someAggregation", function (args) {
    var sub = this;
    // This works for Meteor 0.6.5
    var db = MongoInternals.defaultRemoteCollectionDriver().mongo.db;

    // Your arguments to Mongo's aggregation. Make these however you want.
    var pipeline = [
        { $match: doSomethingWith(args) },
        { $group: {
            _id: whatWeAreGroupingWith(args),
            count: { $sum: 1 }
        }}
    ];

    db.collection("server_collection_name").aggregate(        
        pipeline,
        // Need to wrap the callback so it gets called in a Fiber.
        Meteor.bindEnvironment(
            function(err, result) {
                // Add each of the results to the subscription.
                _.each(result, function(e) {
                    // Generate a random disposable id for aggregated documents
                    sub.added("client_collection_name", Random.id(), {
                        key: e._id.somethingOfInterest,                        
                        count: e.count
                    });
                });
                sub.ready();
            },
            function(error) {
                Meteor._debug( "Error doing aggregation: " + error);
            }
        )
    );
});

Aggregation in einer Servermethode

Eine andere Möglichkeit, Aggregationen Mongo.Collection#rawCollection() ist die Verwendung der Mongo.Collection#rawCollection()

Dies kann nur auf dem Server ausgeführt werden.

Hier ein Beispiel, das Sie in Meteor 1.3 und höher verwenden können:

Meteor.methods({
   'aggregateUsers'(someId) {
      const collection = MyCollection.rawCollection()
      const aggregate = Meteor.wrapAsync(collection.aggregate, collection)

      const match = { age: { $gte: 25 } }
      const group = { _id:'$age', totalUsers: { $sum: 1 } }

      const results = aggregate([
         { $match: match },
         { $group: group }
      ])

      return results
   }
})


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow