On Fri, Oct 9, 2009 at 12:20 PM, Niclas Hedhman <[email protected]> wrote: > I think this forum message captures my experience; > http://groups.google.com/group/google-appengine-java/browse_thread/thread/fbf9ba7d3363c4aa/3f31bd5573f79b0b?lnk=gst&q=unload#3f31bd5573f79b0b
The AppEngine Runtime is explained on http://code.google.com/appengine/docs/java/runtime.html And a lot of important reads on that page, my list of important stuff to remember; * Max Request time; 30 seconds. * No creation of Thread, ThreadGroup or emthod calls that does this (java.util.Timer for instance). * "A given request may be routed to any server, and it may not be the same server that handled a previous request from the same user." * Max 30 concurrent requests. Cheers -- Niclas Hedhman, Software Developer http://www.qi4j.org - New Energy for Java I live here; http://tinyurl.com/2qq9er I work here; http://tinyurl.com/2ymelc I relax here; http://tinyurl.com/2cgsug _______________________________________________ qi4j-dev mailing list [email protected] http://lists.ops4j.org/mailman/listinfo/qi4j-dev

