CacheSetproperties()

Changes the properties of the cache engine if the underlying implementation supports it

Usage

BOOLEAN = CacheSetproperties( region, props )
Argument Summary
region the region engine to call this
props the properties to pass to this (struct) See below for the possible values [optional]

Calling

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

CacheSetproperties(
   region=?, 
   props=?
);

Supports passing parameters as a structure using ArgumentCollection:

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

Extra

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