Returns the properties of the current caching engine used. In ColdFusion, you can use the following caching engines:
A struct with a single attribute, name.
CacheGetEngineProperties()
<cfscript> WriteDump(CacheGetEngineProperties()); // Returns the properties of the cache engine WriteOutput("The caching engine currently used is: " & CacheGetEngineProperties().name); // Returns the name of the cache engine </cfscript>
Sign in to your account