You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi @richsilv , I'm using your package in a mobile app (meteor-cordova app), already in pre-production.
I had 2 main problems to solve in this app:
Treat static, potentially big collections outside of meteor livedata package (no pub/sub): got this with your package (thank you for that!); I'll post some issues I'm having with it and a couple of improvement suggestions in another issue;
Try to reuse subscriptions between offline/online transitions, even when the browser refreshes. This is to avoid the overhead caused by reloading all data associated to subscribed collections on an offline/online transition (my users may be in zones with a poor network coverage, experiencing many reloads in a short intervals of time)
This last issue is giving me some work. It's a hard problem to solve. I though I could hold on to the subscription handle, save it in local storage and then find a way to reuse it like this:
//subsHandle holds the subs object before refresh
// after refresh, I could hold on to it like:
subsHandle = Meteor.subscribe(...)
But it's not that simple. Do you think there's a way to achieve this?
Thanks
The text was updated successfully, but these errors were encountered:
Hi @richsilv , I'm using your package in a mobile app (meteor-cordova app), already in pre-production.
I had 2 main problems to solve in this app:
This last issue is giving me some work. It's a hard problem to solve. I though I could hold on to the subscription handle, save it in local storage and then find a way to reuse it like this:
But it's not that simple. Do you think there's a way to achieve this?
Thanks
The text was updated successfully, but these errors were encountered: