Honestly it's really hard to tell what you're asking from this thread.
If your app takes a long time to start up and spends most of its time
idle (thus gets shut down), consider paying for the "always on"
option.
Also, if you haven't yet, put <threadsafe>true</threadsafe> in your
appengine-web.xml. A single instance should be able to serve many
concurrent requests.
Jeff
If you are loading extra libraries that can slow your load time. Also look at storing variables and other start up information in memcache rather than datastore. I knocked a lot of time off of my startup by trimming the fat and putting all of my start up variables in a single entity rather than having to grab several entities at startup.
--
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/-/akZjr0DRILYJ.
To post to this group, send email to google-a...@googlegroups.com.
To unsubscribe from this group, send email to google-appengi...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.