Apache Geode Native .NET Reference 1.15.0
|
Defines common statistical information for both the region and its entries. More...
#include <CacheStatistics.hpp>
Properties | |
System::DateTime | LastAccessedTime [get] |
For an entry, returns the last time it was accessed via Region.Get . More... | |
System::DateTime | LastModifiedTime [get] |
For an entry, returns the time that the entry's value was last modified. More... | |
Defines common statistical information for both the region and its entries.
All of these methods may throw a CacheClosedException
, RegionDestroyedException
, or EntryDestroyedException
.
|
get |
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
.
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.
|
get |
For an entry, returns the time that the entry's value was last modified.
For a region, returns the last time any of the region's entries' values or the values in subregions' entries were modified.
The modification may have been initiated locally, or it may have been an update distributed from another cache. It may also have been a new value provided by a loader. The modification time on a region is propagated upward to parent regions, transitively, to the root region.
Entry and subregion creation will update the modification time on a region, but Region.Destroy
, Region.DestroyRegion
, Region.Invalidate
, and Region.InvalidateRegion
do not update the modification time.