I understand that client cursors (ie. collection.find) only query the local cache (minimongo). Also, a subscription will typically (always?) make a request against a server-side publication, causing records to be pushed to the client and cached.
My question: do subscriptions attempt to locate a locally cached version of their request before receiving a result-set from a server-side publication?
I realize this would be complicated as only the publication knows the full nature of the query that it is publishing. But it would be possible.