[appengine-java] Re: Are GAE servers multicore ?

2011-04-30 Thread Peter Ondruška
http://code.google.com/appengine/docs/java/overview.html : The JVM runs in a secured "sandbox" environment to isolate your application for service and security. The sandbox ensures that apps can only perform actions that do not interfere with the performance and scalability of other apps. For i

[appengine-java] Re: Are GAE servers multicore ?

2011-04-30 Thread Didier Durand
Hi, You can't multithead directly in GAE: it's forbidden. You rather gain parallelism via queued tasks. You don't really care in the servers are multi-core or not: gae starts more jvms automatically when needed. regards didier On Apr 30, 6:14 pm, hadf wrote: > Hello, > > Are GAE servers mult