Offline synchronisation and Conflict Resolution in Meteor

Where can I read about Offline synchronisation and Conflict Resolution in Meteor app?

In other words I’d like to know if it’s doable in Meteor what’s in this video with Loopback

https://docs.strongloop.com/display/public/LB/Synchronization

I think this is important topic nowadays.

From the docs:

While the client is disconnected it will not receive updates to collections, method calls will be queued until the connection is reestablished [my emphasis], and hot code push will be disabled.

I can’t immediately locate any docs for you on this, but the answer is “the database wins”. In other words, whatever the database (collection) has is the ultimate source of truth.

1 Like