Is there any more documentation on bookkeeper? I’m not sure from looking at the code how it’s supposed to work. Do I just create a db that has a table of id’s and timestamps and just use it to keep track of last sync? I was looking for other samples of store and haven’t seen one that uses a bookkeeper.
Okay, that makes sense. The bookkeeper just has unique keys with timestamps to keep track of last writes. Thanks
r
rocketraman
09/20/2024, 3:50 PM
I'm new to Store myself, but I think that is only one possible implementation. For example, you could have append-only data, so in that case conflict resolution is just appending both values from the conflict.