Smart Collection is now retired & Meteor's Collection implementation has fixes for most of the performance bottlenecks. It is also using the MongoDB oplog just like Smart Collections.
This is a complete re-write of the MongoDB Collection implementation for Meteor. Designed with following 3 areas in mind
This is not a toy project! But a complete Collection replacement with a well tested source code. Still we might have bugs :)
Install Smart Collections from Atmosphere
mrt add smart-collections
Install From Git (If you are not using Meteorite)
mkdir -p packages
#make sure you created the packages folder
git submodule add https://github.com/arunoda/meteor-smart-collections.git packages/smart-collections
Replace Meteor.Collection
with Meteor.SmartCollection
. Just that!
eg:-
//old code
Posts = new Meteor.Collection('posts');
//with smart collections
Posts = new Meteor.SmartCollection('posts');
Collection
APICursor.observe()
does not exists_id
must be a String
(will support ObjectID
and numbers
soon)oplog