Gets the cache properties for the object cache, the page cache, or both. The information is application-specific.
An array of structures, or a single structure, containing the cache properties. Each structure has the properties for the cache type: object, template or query. If you specify the region parameter, the single structure is not wrapped in an array. Each structure has the following fields:
Structure element |
Description |
|---|---|
diskpersistent |
A Boolean value specifying whether to persist caches stored on disk through JVM restarts. |
eternal |
A Boolean value specifying whether no timeout or idletime applies. A true value indicates that the object, template, or query is cached without any timespan being specified. |
maxelementsinmemory |
The maximum number of objects that can be cached in memory. If the number is exceeded and overflowtodisk is false, the new objects entered replace old elements using algorithm specified in the memoryevictionpolicy entry. |
maxelementsondisk |
The maximum number of objects that can be stored on disk if overflowtodisk is true. |
memoryevictionpolicy |
The algorithm to used to evict old entries when maximum limit is reached, such as LRU (least recently used) or LFU (least frequently used). |
objecttype |
The cache type: object, template or query. |
overflowtodisk |
A Boolean value specifying whether when the maximum number of elements allowed in memory is reached, objects can be moved to disk, as determined by the memoryevictionpolicy value. |
statistics |
true indicates that statistics collection for Ehcache is enabled. |
timetoidolseconds |
The idle time in seconds. Used if a cfcache tag does not specify an idleTime attribute. |
timetoliveseconds |
The timeout time in seconds. Used if a cfcache tag does not specify a timespan attribute. Used if a cfquery tag does not specify a cachedwithin attribute. |
The cacheGetProperties function also supports the following ehCache Structure Elements:
CacheGetProperties([region])
See also
cfcache, CachePut, CacheGet, CacheGetAllIds, CacheGetMetadata, CacheRemove, CacheSetProperties
ColdFusion 10: Added the parameter region.
ColdFusion 9: Added the function.
Parameter |
Description |
|---|---|
region |
(Optional) The name of the cache region. |
<cfscript>
// create a cache region
rProps={};
CacheRegionNew("_Region",rProps,true);
// set cache properties
propStruct={};
propStruct.diskStore="store 1";
propStruct.diskPersistent=true;
propStruct.eternal=true;
propStruct.maxEntriesLocalHeap="20";
CacheSetProperties(propStruct,"_Region");
Writedump(CacheGetProperties("_Region"));
</cfscript>
Sign in to your account