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
First off, thank you for all your hard work put into this incredible library!
I'm working on implementing Dexie into an established application to support offline capabilities. I am using Dexie.Syncable to sync changes to my server. One of the challenges I am running into right now is when I populate initial data into the dexie database. All the insertions are tracked in the _changes table, and when the Dexie.Syncable connection is made it tries to push all those changes to the server. Which is not necessary since that data already exists on the server database.
Is there a way to ignore specific changes from being tracked in the _changes? especially during the db.on('ready') event?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
First off, thank you for all your hard work put into this incredible library!
I'm working on implementing Dexie into an established application to support offline capabilities. I am using Dexie.Syncable to sync changes to my server. One of the challenges I am running into right now is when I populate initial data into the dexie database. All the insertions are tracked in the _changes table, and when the Dexie.Syncable connection is made it tries to push all those changes to the server. Which is not necessary since that data already exists on the server database.
Is there a way to ignore specific changes from being tracked in the _changes? especially during the db.on('ready') event?
Beta Was this translation helpful? Give feedback.
All reactions