I've created a web application with this script surrounding common cfqueries and my navbar code.
<cfcache action="clientcache" timespan="#createtimespan(0,1,0,0)#">
On the signout page, I was using <cfset StructClear(Session)>
to clear session data. I want to also clear the cache and was using <cfcache action="flush">
.
However, something is off and the session isn't clearing and clients aren't able to sign out of the application. When I remove the cfcache tag, clients are able to log out but the system moves incredibly slow.
How do I get this working correctly with the cfcache tag? Thanks in advance.