Hello.

I experienced receiving not-up-to-date data when reading from the Object Store.
Does the Object Store only provide eventual consistency?

I would need to update some data on the object store, and I do that with a readJson, then I modify the object, and then I saveJson the modified data. But if every now and then I get an old value from a read, I would then write a wrong update. Imagine I am writing a list of data points, if I had written [A, B, C] but I get [A,B] because of a not up to date read, I would write [A, B, D] next instead of [A, B, C, D].

Is there a way to make sure I get what has been written last to the object store? Or is there some kind of consistent Update method?