CacheGet()

Returns the data addressed by the id; returns a null if the object does not exist (use IsNull() to test)

Usage

OBJECT = CacheGet( id, region )
Argument Summary
id the unique ID of the object/string in the cache
region the region engine to use - default 'DEFAULT' [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

CacheGet(
   id=?, 
   region=?
);

Supports passing parameters as a structure using ArgumentCollection:

CacheGet( ArgumentCollection={
   id : ?, 
   region : ?
} );

Extra

For more information on using caching and setup, visit the Caching