RE: session/client variables 101

2003-08-14 Thread Tim Laureska
I guess then it doesn't hurt anything to set up cflock in a MX server environment just in case ?? -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 6:21 PM To: CF-Talk Subject: RE: session/client variables 101 CFLOCK is no longer

Re: session/client variables 101

2003-08-14 Thread Dave Carabetta
CFLOCK is no longer necessary to prevent memory corruption, but it is still necessary to prevent race conditions in your code. In other words, if you need to ensure that only a single request at a time can access a resource (whether a variable in a shared scope, a file on the filesystem, or

Re: session/client variables 101

2003-08-14 Thread Clint
-Talk [EMAIL PROTECTED] Sent: Thursday, August 07, 2003 3:32 PM Subject: RE: session/client variables 101 Although the chances of session variables getting crossed are pretty slim in CFMX, it is still good practice to lock them. -Original Message- From: Tim Laureska [mailto:[EMAIL

RE: session/client variables 101

2003-08-10 Thread Barney Boisvert
, Senior Development Engineer AudienceCentral [EMAIL PROTECTED] voice : 360.756.8080 x12 fax : 360.647.5351 www.audiencecentral.com -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 10:52 PM To: CF-Talk Subject: Re: session/client

session/client variables 101

2003-08-09 Thread Tim Laureska
Hello, I am implementing session client variables for the first time (on a job/resume posting site). This is in a shared hosting environment. The server uses CFMX Based on recent postings I've read, it appears locking of session variables is no longer necessary in the CFMX server

Re: session/client variables 101

2003-08-08 Thread Sean A Corfield
On Thursday, Aug 7, 2003, at 22:51 US/Pacific, Dave Carabetta wrote: If I open a browser and then Ctrl+N to open a new browser, that's still technically a part of the same session Just to nit-pick, that depends on your browser. Some browsers will maintain separate in-memory cookie stores for

RE: session/client variables 101

2003-08-08 Thread Tim Laureska
Newbie here again... so Sean, it still doesn't hurt to lock ? ... I see no reference to performance hits, which would seem to be the only possible remaining reason not to put in a locking safequard Tim Just to nit-pick, that depends on your browser. Some browsers will maintain separate in-memory

RE: session/client variables 101

2003-08-07 Thread Bruce Sorge
Although the chances of session variables getting crossed are pretty slim in CFMX, it is still good practice to lock them. -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 3:18 PM To: CF-Talk Subject: session/client variables 101 Hello, I

RE: session/client variables 101

2003-08-07 Thread Barney Boisvert
fax : 360.647.5351 www.audiencecentral.com -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: None To: CF-Talk Subject: session/client variables 101 Hello, I am implementing session client variables for the first time (on a job/resume posting site