Caching options in ColdFusion
This morning (last night?) on cf-talk there was a good thread started about caching options in ColdFusion. While you have cfcache and query caching out of the box, there are more options out there for advanced caching. On the thread these were mentioned:
Softcache - This one is by Ashwin of the ColdFusion engineering team!
And lastly, ScopeCache - This is my own tag and it is used in BlogCFC.
Lots of options out there, and I bet there are more, so please share. And it goes without saying (I hope), that simply dropping a cache onto a page is not the way you solve performance problems. It is the "Final Solution" only and should be used if you have determined, absolutely, that there is no other way to speed up the page.
Comments
There is another thing to consider as well. I recommend that you cache CFCs in the app scope. I recommend this because creating a CFC can be slow. This is kind of a "no brainer", and since I don't have much control over the creation of a CFC, it makes sense to simply create them once.
As with most things, there is no hard and fast rule that applies 100% of the time.
Thanks.
but the things is, i dun understand how is Ray's code is written.
help me pls ;-(
maybe i'll know how after i'm tk a look in your blogcfc.
It's worth trying it!
Greetings,
Jan

Thanks!