Method much faster than subscribe

I like this idea and already used it myself in some components … I would definitely be interested in your proposed HOC … any chance you could mockup a HOC like this and open source it so I could’ve a look?!

I recently noticed if you are subscribing to an already existing subscription from a different client (i.e. the subscription is running with the same arguments, and on the same server), it loads much faster because Meteor has already done all the work to set things up.

It might be interesting if someone could make a tool to keep some subscriptions “warm”.

And that might be even better than using a method because you’ve essentially cached the data to the server.

1 Like

Is there any difference in performance between no-reactive publication and reactive one?

I would guess no - they should be following the same steps up until updating the MongoDB cursor.

1 Like