- Print
- Dark
- PDF
Description
Returns an item from cache (null if doesn't exist).
Input Parameters
Name | Type | Required | Description |
---|---|---|---|
key | Text | Yes | Unique item identifier |
[default] | Any | No | Default value to use if value doesn't exist |
Returns
Type: Any
Returns the specified item from cache or null if it does not exist or is empty.
If a default value is specified and the item doesn't exist, then the default value is inserted into the cache and returned as the value. This offers a simple way to avoid checking if an item exists before retrieving it.
Examples
Remarks
Use this function when you want to retrieve information that has been stored into cache from previous script executions.
Cache is a programming term referring to a simple database of information. A cache is a collection of associated key-value pairs. The key must be a unique identifier and the value is any object you want to store. Once stored, you can retrieve these objects using their keys.