수색…
비고
서버 집계
meteor 0.6에서만 * 서버 측에서 사용하기 위해 '실제'mongodb 라이브러리를 패키징 할 수 있습니까?
클라이언트 집계 (Minimongo)
https://github.com/utunga/pocketmeteor/tree/master/packages/mongowrapper
서버 집계
Andrew Mao의 솔루션입니다. 유성의 평균 집계 쿼리
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);
}
)
);
});
서버 메소드의 집계
집계를하는 또 다른 방법은 Mongo.Collection#rawCollection()
이것은 서버에서만 실행할 수 있습니다.
Meteor 1.3 이상에서 사용할 수있는 예는 다음과 같습니다.
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
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow