CacheIdexists()

Determines if the object is in the cache

Usage

BOOLEAN = CacheIdexists( 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:

CacheIdexists(
   id=?, 
   region=?
);

Supports passing parameters as a structure using ArgumentCollection:

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

Extra

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