Search code examples
google-app-enginegoogle-cloud-datastoreconsistency

Is getting the entity by its key strongly consistent?


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


Solution

  • 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.