On Thu, Sep 29, 2011 at 6:59 PM, Tapir <[email protected]> wrote: > > I am really some regretting on using java instead of python. > I feels google doesn't put enough energy to solve some common problems > in java apps, > such as slow startup and high memory using.
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 -- 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.
