Re: Notification of expiring sessions

2006-12-19 Thread Hassan Schroeder
On 12/19/06, ben short <[EMAIL PROTECTED]> wrote: I was hoping that doing it this way would also provide me with replication of this data between several tomcat instances. Odviously I would need to setup session replication between them. Also it would allow for session data persistence should to

Re[2]: Notification of expiring sessions

2006-12-19 Thread Dima Retov
bs> I know that tomcat provides some way of persisting session but the bs> documentation doesn't seem to be very good. bs> Ben bs> On 12/19/06, Caldarale, Charles R bs> <[EMAIL PROTECTED]> wrote: >> > From: ben short [mailto:[EMAIL PROTECTED] >> > Subje

Re: Notification of expiring sessions

2006-12-19 Thread ben short
rom: ben short [mailto:[EMAIL PROTECTED] > Subject: Notification of expiring sessions > > I want to store user session data into a database rather than in the > session, to conserve memory. Unless your session data is huge, you're probably consuming more memory by accessing the data bas

RE: Notification of expiring sessions

2006-12-19 Thread Caldarale, Charles R
> From: ben short [mailto:[EMAIL PROTECTED] > Subject: Notification of expiring sessions > > I want to store user session data into a database rather than in the > session, to conserve memory. Unless your session data is huge, you're probably consuming more memory by acc

Notification of expiring sessions

2006-12-19 Thread ben short
Hi, I want to store user session data into a database rather than in the session, to conserve memory. I want to use the session id as the key to look up this data. As a request comes in, the servlet will hit the db with the session id and get the data if its there. if its not then i will create