Skip to content Skip to sidebar Skip to footer

Are Non-reactive Meteor Db Subscriptions Possible?

I have documents from a server-side collection published. However, I don't need reactivity on the client side. For performance reasons, I'd like to just query the db manually from

Solution 1:

One way to do this is:

  • initialize an unmanaged Collection on the client
  • use Meteor.methods to populate it as needed

However, This limits the selectors you can use for querying securely, and requires you manually insert all the data retrieved via methods. This approach also limits the reactive functionality of the unmanaged Collection.

Post a Comment for "Are Non-reactive Meteor Db Subscriptions Possible?"