Would it be possible to make all my subscriptions non-reactive?
This means, that once the inicial set has been sent to the client, server stops observing the cursors.
I found the following answer here: Are non-reactive Meteor db subscriptions possible?
This works, but I'd prefer a "global" solution.
Ideally, I'd like to have the option to choose which subscriptions would be reactive and which won't. For example, I'd like to have all logged in "admin" users to have reactive data, however, regular website visitors don't need this.
Thanks! :)