> > > And from top of my head there is no api to get all the current session > id's > > from > > an instance when the instance does start up.. > > But we could ditch ALL the directories it can find in the temp > directory the page store uses when starting up, right? >
No we can't do that, If you as you should terminate your web container gracefully then the web container will save all the sessions to disk. Then if you restart it again all the sessions are loaded again. And yes the application works just as it was never restarted. But if we throw away all the page stores. Then we loose all the data of sessions that are currently active. The only thing i can think of is having some check that only deletes things that are not touched for X hours or days. johan
