That does seem a high. Does it also say that a new instance was started for this request? That would make it less surprising.
Are you storing/getting all the entities in one db call? That's the most straightforward way to speed up requests. There's some overhead to serializing and deserializing lists, but I don't think it should be that much. Also, consider whether some of this data doesn't need indexes. I think writing indexes for a list can be time consuming. AppStats is a magnificent boon that will really help you to see where the time is going. http://code.google.com/appengine/docs/python/tools/appstats.html -- 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.
