SimpleCacheStatistics Properties |
The SimpleCacheStatistics type exposes the following members.
Name | Description | |
---|---|---|
![]() | AverageGetMillis |
Determine the average number of milliseconds per "get"
invocation since the cache statistics were last reset.
|
![]() | AverageHitMillis |
Determine the average number of milliseconds per "get"
invocation that is a hit.
|
![]() | AverageMissMillis |
Determine the average number of milliseconds per "get" invocation
that is a miss.
|
![]() | AveragePruneMillis |
Determine the average number of milliseconds per cache pruning.
|
![]() | AveragePutMillis |
Determine the average number of milliseconds per "put"
invocation since the cache statistics were last reset.
|
![]() | CacheHits |
Determine the rough number of cache hits since the cache
statistics were last reset.
|
![]() | CacheHitsMillis |
Determine the total number of milliseconds (since the last
statistics reset) for the "get" operations for which an entry
existed in this cache.
|
![]() | CacheMisses |
Determine the rough number of cache misses since the cache
statistics were last reset.
|
![]() | CacheMissesMillis |
Determine the total number of milliseconds (since the last
statistics reset) for the "get" operations for which no entry
existed in this cache.
|
![]() | CachePrunes |
Determine the rough number of cache pruning cycles since the
cache statistics were last reset.
|
![]() | CachePrunesMillis |
Determine the total number of milliseconds (since that last
statistics reset) spent on cache pruning.
|
![]() | HitProbability |
Determine the rough probability (0 <= p <= 1) that the next
invocation will be a hit, based on the statistics collected since
the last reset of the cache statistics.
|
![]() | TotalGets |
Determine the total number of "get" operations since the cache
statistics were last reset.
|
![]() | TotalGetsMillis |
Determine the total number of milliseconds spent on "get"
operations since the cache statistics were last reset.
|
![]() | TotalPuts |
Determine the total number of "put" operations since the cache
statistics were last reset.
|
![]() | TotalPutsMillis |
Determine the total number of milliseconds spent on "put"
operations since the cache statistics were last reset.
|