Andrew Myers
unread,Oct 4, 2011, 10:19:47 PM10/4/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to cfecli...@googlegroups.com
Hi,
CFEclipse reports the error "cfcache is missing a closing tag" on the following code, however ACF appears to require that you do not have a closing tag when using the get and put actions (and possibly others).
I had a quick look in Trac and there didn't appear to be any related issues. Should we log this as one to fix?
Regards,
Andrew.
<cfset loc = {}>
<cfcache action="get" id="testIt" name="loc.cachedObj">
<cfif structKeyExists(loc, 'cachedObj')>
<cfdump var="#loc.cachedObj#">
<cfelse>
<cfcache action="put" id="testIt" value="#now()#">
</cfif>