Apache Geode Native .NET Reference 1.15.0
Apache::Geode::Client::CacheStatistics Class Reference

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...
 

Detailed Description

Defines common statistical information for both the region and its entries.

All of these methods may throw a CacheClosedException, RegionDestroyedException, or EntryDestroyedException.

See also
Region.Statistics, RegionEntry.Statistics

Property Documentation

◆ LastAccessedTime

System:: DateTime Apache::Geode::Client::CacheStatistics::LastAccessedTime
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.

Returns
the last access time of the region or the entry's value;
See also
Region.Get, LastModifiedTime

◆ LastModifiedTime

System:: DateTime Apache::Geode::Client::CacheStatistics::LastModifiedTime
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.

Returns
the last modification time of the region or the entry;
See also
Region.Put, Region.Get, Region.Create, Region.CreateSubRegion

Apache Geode C++ Cache .NET API Documentation