Re: ColdFusion Session Variables in Distributed Config

2010-05-12 Thread Dave Watts
> ColdFusion stores the session variables in the web server local RAM, however > when using ColdFusion with distributed configuration you should store the > sessions in the database because you don't know which machine will serve the > next page causing inconsistent sessions. I suspect that the o

RE: ColdFusion Session Variables in Distributed Config

2010-05-12 Thread Paul Alkema
http://paulalkema.com/ -Original Message- From: Mike Chabot [mailto:mcha...@gmail.com] Sent: Wednesday, May 12, 2010 1:46 PM To: cf-talk Subject: Re: ColdFusion Session Variables in Distributed Config Sessions are stored on the server running ColdFusion. -Mike Chabot On Wed, May 12, 2010 at 1:

Re: ColdFusion Session Variables in Distributed Config

2010-05-12 Thread Maureen
On the server running ColdFusion, but you can have some serious issues on load-balanced servers with session variables. On Wed, May 12, 2010 at 10:07 AM, Donnie Carvajal wrote: > > Does anyone know where the session variables are stored if Coldfusion is > running in a distributed configuration?

Re: ColdFusion Session Variables in Distributed Config

2010-05-12 Thread Wil Genovese
The session variable are stored in the JVM memory of each ColdFusion instance. if session replication is enable then the session information is shared among the enable CF instances. Each instance keeping a copy of the session information in the JVM memory. Wil Genovese One man with coura

Re: ColdFusion Session Variables in Distributed Config

2010-05-12 Thread Mike Chabot
Sessions are stored on the server running ColdFusion. -Mike Chabot On Wed, May 12, 2010 at 1:07 PM, Donnie Carvajal wrote: > > Does anyone know where the session variables are stored if Coldfusion is > running in a distributed configuration?  My assumption is the session > variables are store

ColdFusion Session Variables in Distributed Config

2010-05-12 Thread Donnie Carvajal
Does anyone know where the session variables are stored if Coldfusion is running in a distributed configuration? My assumption is the session variables are stored on the server running ColdFusion and not the web server, but you know what they say about assuming. Thanks, Donnie