> What happens if between logged in user navigates to another page and > the GAE instance was shutdown? > I understand a new instance is started but what happened to the > session data?
AFAIK session data is persisted to big table. > Also, how is startup/shutdown of instances related to session-timeout > in web.xml? > > <session-config> > <session-timeout>30</session-timeout> > </session-config> AFAIK there is no connection. An instance will not be kept warm because there is an open session. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" 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-java?hl=en.
