HI Jan Something to watch for on the memory front, is if you are doing a lot of string manipulation using '+' operator. I have seen someone here last year using + rather than join and hitting soft and hard memory limits with a single request, and changing to join reduced memory use by 100 times. Its an extreme example I know.
Also if you are holding references to entities in modules, global, etc... things may not get garbage collected. Have a look at apptrace http://pypi.python.org/pypi/apptrace/0.2.3 which allows you to monitor memory use in appengine Rgds T -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/zUwQESiX6_4J. 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.
