<cfoutput>
<!DOCTYPE html PUBLIC "- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Simple Data Caching Example in ColdFusion</title>
</head>
<body>
<h1>
Simple Data Caching Example in ColdFusion
</h1>
<p>
Current Timestamp:
#TimeFormat( Now(), "hh:mm:ss TT" )#
</p>
<cf_simplecache
key="exampleA"
timeout="#CreateTimeSpan( 0, 0, 5, 0 )#"
cache="#APPLICATION.Cache#">
<p>
Cached Timestamp (Timeout):
#TimeFormat( Now(), "hh:mm:ss TT" )#
</p>
</cf_simplecache>
<cf_simplecache
key="exampleB"
expirationdate="02/01/2008"
cache="#APPLICATION.Cache#">
<p>
Cached Timestamp (Expiration):
#TimeFormat( Now(), "hh:mm:ss TT" )#
</p>
</cf_simplecache>
</body>
</html>
</cfoutput>