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
| Attribute | Description | Required | Default |
|---|---|---|---|
| diskpersistent | A Boolean value specifying whether to persist caches stored on disk through JVM restarts. | ||
| diskstore | The disk store. | ||
| eternal | A 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. | ||
| 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 overfllowtodisk 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 or template. | ||
| objecttype | The 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. | ||
| 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. | ||
| propsSruct | A structure specifying the cache properties plus identifying information | ||
| timetoidoleconds | The idle time in seconds. Used if a cfcache tag does not specify an idleTime attribute. | ||
| timetolivesecond | The timeout time in seconds. Used if a cfcache tag does not specify a timespan attribute. |
Returns
Nothing