persistent class %IPM.Repo.Filesystem.Cache
extends %Persistent, %IPM.General.ModuleInfo
parameter DEFAULTGLOBAL = "^IPM.Repo.Filesystem.Cache";
If a persistent class uses %Storage.Persistent then the DEFAULTGLOBAL parameter is used as the
default global root for the values of the storage keywords COUNTERLOCATION, DATALOCATION, IDLOCATION,
INDEXLOCATION and STREAMLOCATION in the active storage definition. DEFAULTGLOBAL is only used
to generate location keyword values that are not already defined. The location value is constructed by adding
a location type to the end of DEFAULTGLOBAL. For example, if DEFAULTGLOBAL = "^GL.Account"
the compiler will generate DATALOCATION = ^GL.AccountD.
If USEEXTENTSET is true, then DEFAULTGLOBAL is used as the default extent location.
The location types are:
Location | Type |
---|
COUNTERLOCATION | C |
DATALOCATION | D |
IDLOCATION | D |
INDEXLOCATION | I |
STREAMLOCATION | S |
property LastModified
as %TimeStamp [ Required ];
property Manifest
as %Stream.GlobalCharacter;
Full module manifest
property Root
as %String(MAXLEN=260) [ Required ];
property SemVer
as %String(MAXLEN=512);
Property associated with the index to allow quick $Query'ing over SemVer order based on ID
property SubDirectory
as %String(MAXLEN=260);
index (CacheItemIndex on Root,SubDirectory) [Data = LastModified,Unique];
index (RootNameVersion on Root,Name,VersionString) [Unique];
index (SemVer on Name,Version);