This can be demonstrated with this trivial example, on Production 6
RPC's are generated, on Local, only 2

class Person(db.Model):
        firstname = db.StringProperty(required=True)

class Names(db.Model):
        userKeys = db.ListProperty(db.Key)

a = Person(firstname="adam")
b = Person(firstname="bob")
c = Person(firstname="charles")
d = Person(firstname="derick")
e = Person(firstname="edward")

people = [a,b,c,d,e]

db.put(people)

peopleKeys = [a.key(),b.key(),c.key(),d.key(),e.key()]

n = Names()
n.userKeys = peopleKeys

items = db.get(n.userKeys)

-- 
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