CacheRegionnew()

Create a new region for caching

Usage

BOOLEAN = CacheRegionnew( region, props, throwonerror )
Argument Summary
region the region engine to call this
props the properties to pass to this (struct) See below for the possible values [optional]
throwonerror if the region exists, throw an exception (default true) [optional]

Calling

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

CacheRegionnew(
   region=?, 
   props=?, 
   throwonerror=?
);

Supports passing parameters as a structure using ArgumentCollection:

CacheRegionnew( ArgumentCollection={
   region : ?, 
   props : ?, 
   throwonerror : ?
} );

Extra

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