Whatever message this page gives is out now! Go check it out!

CacheGetEngineProperties

Last update:
May 18, 2026

Description

Returns the properties of the current caching engine used. In ColdFusion, you can use the following caching engines:
  • Ehcache (default cache engine)
  • JCS
  • Memcached
  • Redis
  • Custom cache plugin

Returns

A struct with a single attribute, name.

Category

Syntax

CacheGetEngineProperties()

See also

Example

<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>

Output

Share this page

Was this page helpful?
We're glad. Tell us how this page helped.
We're sorry. Can you tell us what didn't work for you?
Thank you for your feedback. Your response will help improve this page.

On this page