Problems
How can ColdFusion cache a database query?
ColdFusion query caching is used to keep frequently accessed query results in memory rather then hav...
How can I automate cached queries to update at an exact time each day?
While ColdFusion gives you the ability to choose how long query data is cached, and even couple of o...
How can I cache a ColdFusion page on both the client machine and the ColdFusion server?
Use the <cfcache> tag with the action attribute set to either cache or optimal. Using the <...
How can I cache a ColdFusion page on the client machine?
Setting the action attribute of the <cfcache> tag equal to "clientCache" gives you programmati...
How can I cache a ColdFusion page on the ColdFusion server?
The <cfcache> tag also gives you the ability to cache pages on the ColdFusion server by settin...
How can I cache the results of a block of ColdFusion code?
The ColdFusion <cfsavecontent> tag is a convenient way to store the results of a block of Cold...
How can I clear a client-side or server-side cache that was created by the <cfcache> tag?
The <cfcache> tag provides an easy way to clear the contents of a <cfcache> cached page ...
How can I clear the cache of a recordset created with <cfquery>?
Following the post on "How can ColdFusion cache a database query?", it is often necessary to display...
How can I generate static HTML from a dynamic ColdFusion page?
One very powerful caching technique is to run your ColdFusion code to generate a dynamic web page, a...
How can I prevent a browser from caching my page?
By default, browsers will try to cache the contents of a page. Because of their dynamic nature, most...
How do I process CF code contained in a string (eg. text field in DB)?
Unfortunately CFMX 7 does not have a built-in feature to accomplish this task. You can how ever pul...