Re: sessions

2008-08-24 Thread David Dorward
JuneEarth wrote: > How to make CGI sessions to be shared among multi-webservers? Thanks. They have to use a shared data store for the session information. Using a database for that would be one approach. -- David Dorward -- To unsubscribe,

Re: sessions

2008-08-24 Thread Sean Davis
On Sat, Aug 23, 2008 at 2:52 AM, JuneEarth <[EMAIL PROTECTED]> wrote: > How to make CGI sessions to be shared among multi-webservers? Thanks. The simplest way is to use a transactional database system. You read the session from the database and write back to the database. It will work with as ma