CacheRemove()
Removes one or more keys
Usage
BOOLEAN = CacheRemove(
id,
region,
throwonerror,
exact
)
Argument | Summary |
---|---|
id | one or a list of IDs to delete |
region | the region engine to use - default 'DEFAULT' [optional] |
throwonerror | flag to control if an exception is thrown if the region does not exist [optional] |
exact | whether the key should be exact - default TRUE (note not all caching engines support this) [optional] |
Calling
Supports named-parameter calling allowing you to use the function like:
CacheRemove( id=?, region=?, throwonerror=?, exact=? );
Supports passing parameters as a structure using ArgumentCollection:
CacheRemove( ArgumentCollection={ id : ?, region : ?, throwonerror : ?, exact : ? } );
Extra
For more information on using caching and setup, visit the Caching