Thanks Ryan, that settles it :)

Perhaps this should be explicitly stated in the article/docs.

  Viktor

On Nov 26, 11:40 pm, ryan <[EMAIL PROTECTED]> wrote:
> hi viktor! that's a common misconception that people have after
> reading that article. queries and get()s *after* a put() are always
> consistent. this is why we say that the datastore is strongly
> consistent. within the same request, once a put() returns
> successfully, all subsequent get()s and queries will be fully
> consistent and include the entity (or entities) that were put().
>
> to answer your question more directly, get() does not use an index.
> it's a direct lookup by primary key. the inconsistencies discussed in
> that article are limited to queries, not get()s, and can only happen
> when one request does a put() and another concurrent request runs a
> query.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" 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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to