Right, but I'm interested in having the user's session timeout after 60 minutes of inactivity.
Jon -----Original Message----- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, July 07, 2006 3:16 PM To: CF-Talk Subject: RE: How do I set client variables timeout? > Why the *heck* doesn't <cfapplication> have a clienttimeout attribute? > None of the programmers here can guess as to why there would be a > sessiontimeout but no clienttimeout. *sigh*... Session variables are stored in memory, which is very fast but relatively limited. So, you don't want to persist sessions longer than you have to. Client variables, on the other hand, persist on disk somewhere, and there's no significant cost to keeping them for a long time - often across multiple visits from a user. You can get rid of Client variables by purging them periodically, which is the rough equivalent to the time out you're looking for. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers in Washington DC, Atlanta, Chicago, Baltimore, Northern Virginia, or on-site at your location. Visit http://training.figleaf.com/ for more information! ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/cf_lists/message.cfm/forumid:4/messageid:245916 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

