I created a root group entity for each Device.
I modified the Note entity to use it's Device as its parent.

device = Device.get_by_key_name(name)
if device != None:
    for n in noteList:
        note = Note(parent=device, n)
        note.put()

Now I'm seeing this error:
The API call datastore_v3.Get() required more quota than is available.

According to my interpretation of Brett, in that video,
"get by key is very fast".

Again I ask, is this a limit of the beta, or a reality of the
datastore?

-David Story
--~--~---------~--~----~------------~-------~--~----~
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