Hi, For me, the answer is here: http://code.google.com/appengine/docs/java/datastore/transactions.html#Isolation_and_Consistency
They say: "Queries and gets inside a transaction are guaranteed to see a single, consistent snapshot of the datastore as of the beginning of the transaction. In particular, entities and index rows in the transaction's entity group are fully updated so that queries return the complete, correct set of result entities, without the false positives or false negatives described in Transaction Isolation that can occur in queries outside of transactions." The task is part of the initial transaction so it sees the ds as of the beginning of the transaction regards didier On Mar 22, 9:12 pm, Tom Gibara <[email protected]> wrote: > Thanks for the link, somehow I'd managed to miss that page of > documentation entirely*; it's good to know, though it indicates other > problems for the OP. > > I'm not clear on why eventually consistent gets aren't an option, ie. > why all gets are indicated as being strongly consistent. Is this a > direct consequence of replication algorithm used? There are various > places in the code I'm currently developing where dirty gets are > adequate and I'd be happy to see them faster. > > * As an aside, I do find the documentation on the datastore feels very > scattered. I'd much prefer sections on the underlying app engine > mechanics with less language specific guidance. > > Tom. > > On 22 March 2011 17:59, Jay Young <[email protected]> wrote: > > > According to the docs, gets, puts, deletes, and ancestor queries are all > > strongly consistent: > >http://code.google.com/appengine/docs/java/datastore/hr/ > > -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
