CacheStatisticsLastAccessedTime Property |
For an entry, returns the last time it was accessed via Region.Get.
For a region, returns the last time any of its entries or the entries of
its subregions were accessed with Region.Get.
Namespace: GemStone.GemFire.CacheAssembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntaxpublic uint LastAccessedTime { get; }
Public ReadOnly Property LastAccessedTime As UInteger
Get
public:
property unsigned int LastAccessedTime {
unsigned int get ();
}
member LastAccessedTime : uint32 with get
Return Value
Type:
UInt32
the last access time of the region or the entry's value;
returns 0 if entry is invalid or access time is uninitialized.
Remarks
Any modifications will also update the LastAccessedTime,
so LastAccessedTime is always greater than or equal to
LastModifiedTime. The LastAccessedTime on a region is
propagated upward to parent regions, transitively, to the the root region.
The number is expressed as the number of milliseconds since
January 1, 1970. The granularity may be as coarse as 100ms, so
the accuracy may be off by up to 50ms.
See Also