cacheSetProperties

Description

Sets the cache properties for the object cache, the page cache, or both. If a cache does not yet exist, creates it. The cache and properties are application-specific.

Categories

Related

History

ColdFusion 9: Added the function.

Syntax

CacheSetProperties(propStruct)

Attributes

AttributeDescriptionRequiredDefault
diskpersistentA Boolean value specifying whether to persist caches stored on disk through JVM restarts.
diskstoreThe disk store.
eternalA Boolean value specifying whether no timeout or idletime applies. A true value indicates that the object or page is cached without any timespan being specified.
maxelementsinmemoryThe 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.
maxelementsondiskThe maximum number of objects that can be stored on disk if overfllowtodisk is true.
memoryevictionpolicyThe algorithm to used to evict old entries when maximum limit is reached, such as LRU (least recently used) or LFU (least frequently used).
objecttypeThe cache type: object or template.
objecttypeThe type of cache: one of the following: template - Set properties for the page cache, which contains cached pages and page segments. object - Set properties for the object cache. all - Set properties for both cache types.
overflowtodiskA 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.
propsSructA structure specifying the cache properties plus identifying information
timetoidolecondsThe idle time in seconds. Used if a cfcache tag does not specify an idleTime attribute.
timetolivesecondThe timeout time in seconds. Used if a cfcache tag does not specify a timespan attribute.

Returns

Nothing