It probably possible if you can break down the task into lots of small chunks.
Remember AppEngine is designed to respond to web-requests. So you define handlers that respond to a user. You only get 30 seconds for a single handler. You can schedule "tasks" to run long running processes, but each task is subject to the same enviroment (they are really just web-requests responding to a request from Googles Task server) 'Parallelism' is just implemented by AppEngine starting another instance of your application if it thinks the current traffic level warents it. ... in short, look somewhere else for this type of processing. On 11 May 2010 09:15, vivek <[email protected]> wrote: > Hi > > Is it possible to run huge algorithm(such as graphics rendering) in > google apps and how fast it can run.Also threading is not supported > how i can run parallel process. > > -- > 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. > > -- 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.
