Hi,
When a new subscription comes in for a publication that the server is already handling, no new call is made to the database, but the data already cached on the server is used to respond to the client. Is this correct?
Does this caching mechanism work for all server side calls? If one were to make a call to the database and all the data is already cached on the server, would Meteor query Mongo directly or would it simply use the cached data. And if it does use the cached data, how does it know all the data is already on the server?
I’m wondering if it’s worth caching a mostly static collection of 700 documents on the server to avoid unnecessary calls to the database, or whether Meteor already does this for me.