How efficient can Meteor be while sharing a huge collection among many clients?

The short answer is that only new data gets sent down the wire. Here’s how it works. There are three important parts of the Meteor server that manage subscriptions: the publish function, which defines the logic for what data the subscription provides; the Mongo driver, which watches the database for changes; and the merge box, … Read more