Enum CacheStatsCounterType
Defines the different counter types the cache manager supports.
Namespace:CacheManager.Core.Internal
Assembly:CacheManager.Core.dll
Syntax
public enum CacheStatsCounterType
Fields
Name | Description |
---|---|
AddCalls | The number of add calls. |
ClearCalls | The number of clear calls. |
ClearRegionCalls | The number of clear region calls. |
GetCalls | The number of get calls. |
Hits | The number of hits. |
Items | The total number of items. This might not be accurate in distribute cache scenarios because we count only the items added or removed locally. |
Misses | The number of misses. |
PutCalls | The number of put calls. |
RemoveCalls | The number of remove calls. |