Is there any more documentation on bookkeeper? I’m...
# store
b
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.
m
Hey Blake - Sorry to be slow, very busy quarter. Here's an example: https://mobilenativefoundation.github.io/Store/mutable-store/building/implementations/bookkeeper/
b
Okay, that makes sense. The bookkeeper just has unique keys with timestamps to keep track of last writes. Thanks
r
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.