RE: How To Create A Live Session Counter

2000-08-24 Thread Larry Juncker
Just typed in the code from this article and it works AWESOME. Anyone wanting this type of feature should check it out. my 2cents worth -Original Message- From: Ken Wilson [mailto:[EMAIL PROTECTED]] Sent: Monday, August 21, 2000 3:41 PM To: [EMAIL PROTECTED] Subject: Re: How To Create

RE: How To Create A Live Session Counter

2000-08-21 Thread Olive, Christopher M Mr NMR
you could use an application level array/structure. you wouldn't have a "true" live counter, because people that don't "log out" would only be tracked by timeouts. close enough for gov't work, though. :) Chris Olive, DOEHRS Website Administrator -Original Message- From:

Re: How To Create A Live Session Counter

2000-08-21 Thread Ken Wilson
Seems I recall that exact issue being addressed in the last issue of ColdFusion Developers Journal. I do believe it included full source code for the sample so that might be worth a look if you can get your hands on it. Actually, the source code is probably freely available for download at

RE: How To Create A Live Session Counter

2000-08-21 Thread Rick Osborne
We built something like this as part of an anti-data-mining script. Basically, we kept a structure in the Application scope that was a pool of Session IDs (keys) and last time visited (values). When each page was hit this time was updated and there was a chance that a "garbage collection"