componentCacheList

This function Lists elements in the component path cache.

componentCacheList() → returns struct

This function requires Lucee.  Not supported on Adobe ColdFusion, etc.

Examples
Sample code invoking the componentCacheList function

Dumps a struct of components in the cache

<cfset c = componentCacheList() />
<cfdump var="#c#" />

Expected Result: struct

Dumps a struct of components in the cache

c = componentCacheList();
dump(c);

Expected Result: struct

Signup for cfbreak to stay updated on the latest news from the ColdFusion / CFML community. One email, every friday.

Fork me on GitHub