I have a task that regularly gets 100 objects at a time, and records how long it takes. This ranges between 0.1 and 2 seconds, usually closer to the lower end. Some of these values were from yesterday when there were serious issues with the datastore.
My objects are slightly more complex than yours, but I would expect similar performance. One thing I noticed is that you've left all your properties indexed - this shouldn't affect reads, but will make writes much slower. For any properties that you don't need to search by (and particularly the list) add "indexed=False" to the definition. Cheers Greg. -- 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.
