Lucee Function Reference
cacheput()
Stores an object in the cache, with a life time and an idle time.
Example
cacheput(string id,object value,[timespan timeSpan,[timespan idleTime,[string cacheName]]]):void
Arguments
The arguments for this function are set. You can not use other arguments except the following ones.
Name | Type | Required | Description |
---|---|---|---|
id | string | Yes | The id for the cache object. |
value | object | Yes | The value of the object. |
timeSpan | timespan | No | The interval until the object is flushed from the cache, as a decimal number of days. One way to set the value is to use the return value from the CreateTimeSpan function. The default is to not time out the object. |
idleTime | timespan | No | A decimal number of days after which the object is flushed from the cache if it is not accessed during that time. One way to set the value is to use the return value from the CreateTimeSpan function. |
cacheName | string | No | definition of the cache used by name, when not set the "default Object Cache" defined in Lucee Administrator is used instead. |