[appengine-java] Instance startup/shutdown and sessions

2010-07-26 Thread Marcel Overdijk
I like to store the logged in user (custom; not Google User Api) of my app in the session. 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? Also, how is

Re: [appengine-java] Instance startup/shutdown and sessions

2010-07-26 Thread Shawn Brown
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