Re: cfcache problem

2007-09-21 Thread Brian Kotek
Yes, Ray's tag also stores things in memory (in fact I think CFACCELERATE was based on Ray's tag). What I meant to say regarding performance was that when Brandon (and Ray as well I beleive) testing their in-memory caching against CFCACHE, the difference in speed was measured in orders of magnitude

RE: cfcache problem

2007-09-21 Thread Dave Watts
> I'm not sure, but if I recall correctly CFCACHE still writes > temp files to the file system and reads them back each time, > which doesn't perform very well under load. Actually, reading the files from disk does perform quite well under load. It's creating the files in the first place which

Re: cfcache problem

2007-09-21 Thread Brian Kotek
I'm not sure, but if I recall correctly CFCACHE still writes temp files to the file system and reads them back each time, which doesn't perform very well under load. Have a look at Ray's scopecache custom tag. I looked around for it and the only link I could find was in the SVN repo for Blog CFC. R