If I save an entity to the datastore and then right after load the entity by it's key, will the program wait and ensure strong consistency?
thing.setValue(newValue);
ofy().save().entity(thing).now();
Thing updatedThing = ofy().load().key(thingKey).now();
Does updatedThing contain the new value?
Is this a good method to ensure strong consistency for a case when I want to update an entity?