Reputation: 305
I am making an application where the entity when created, its key is sent to the other user via notification and the user can then get the entity by lookup. Will this system be strongly consistent
Upvotes: 0
Views: 36
Reputation: 55640
According to the datastore docs, lookup by key is always strongly consistent:
Fetching an entity by key, which is also called "lookup by key", is strongly consistent.
Upvotes: 2