Does anybody have an idea why Google App Engine permits only a single thread of execution for a deployed application?
I personally believe that it has something to d
I don't know for sure, but I believe it is probably for security reasons. If they allow multiple threads, they are opening themselves up for a fork()
bomb (or threading equivalent). Also, it greatly simplifies resource management - Google only needs to manage a single thread worth of resources per application.