http://docs.meteor.com/#find :
Statics.find ({}, {reactive: false})
Edited to reflect the comment:
Do you have information that reactive: false param is only client side? Perhaps you are right, this is a reasonable, perhaps interpretation. I don’t have time to check, but I thought it could also be a server-side directive, saying that I don’t poll the mongo result set. I want to know ...
You speak
However, this is horribly inefficient if each client has the same large data set where each document has many fields.
Now we may discuss the effectiveness of the server code and its polling of the mongo source for updates that occur outside the server. Please ask another question, which is much higher than my ability to answer! I doubt that this happens once for each connected client, most likely this is synchronization between the application server information and the mongo server.
The client you request, including sorting, must be marked as inactive. It doesn’t depend on whether you can issue them using sorting instructions or whether they can be restarted using a different reactivity, but should not include a trip to the server. When each document reaches the client side, it is cached. You can still do your best to minimize opportunities. In the absence of updates, the client does not request the server, you do not need to disconnect it. The server clicks only if necessary.
source share