j.doe
j.doe

Reputation: 305

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

Upvotes: 0

Views: 36

Answers (1)

snakecharmerb
snakecharmerb

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

Related Questions