> *My registry seems to be corrupted, though it's hard to say. It has
> swollen with client variables, and CF *seems* not to be able to purge
> the old ones after the designated period. Is there a way to manually
> purge them? I can't view the CF key in regedit, as regedit eats up
> RAM/virtual memory when I try to access the CF part of the registry.

If you just want to delete everything in the Clients key, you could do
something like this:

<cfregistry action="DELETE"
branch="HKEY_LOCAL_MACHINE\Software\Allaire\ColdFusion\CurrentVersion\Client
s">

If CF isn't able to do this (and it might be a bad idea to try this, come to
think of it), you might instead delete the key programmatically, you could
do it any number of ways. For example, if you're using Windows 2000, you can
use the command-line REG.EXE tool, which comes with the Windows 2000 Support
Tools (found on the Win2K install CD):

REG DELETE
HKEY_LOCAL_MACHINE\Software\Allaire\ColdFusion\CurrentVersion\Clients

Note that in either case, you'll delete whatever loose values are in there
to track server-wide settings for Client variables, such as the use of
UUIDTokens. That's no big problem, though, I suppose. You could read out
just those values before deleting the key, again using REG:

REG QUERY
HKEY_LOCAL_MACHINE\Software\Allaire\ColdFusion\CurrentVersion\Clients /v
TimeOut
REG QUERY
HKEY_LOCAL_MACHINE\Software\Allaire\ColdFusion\CurrentVersion\Clients /v
LastID
REG QUERY
HKEY_LOCAL_MACHINE\Software\Allaire\ColdFusion\CurrentVersion\Clients /v
UUIDToken

> *Same sort of issue with DB client stores: CF isn't properly purging
> unused client variables. It looks as though all rows created so far
> (since ~1 week ago) are still there, though CF's supposed to clean
> unused client variables after a day. Isn't CF supposed to handle these
> deletes, or do I need to implement a DB job to handle it?

There's a bug with this, but there's also a bug fix:
http://www.macromedia.com/v1/Handlers/index.cfm?ID=22730&Method=Full

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
______________________________________________________________________
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to