Package com.gigaspaces.server.blobstore
Interface BlobStoreStatistics
- All Known Implementing Classes:
BlobStoreStatisticsImpl
public interface BlobStoreStatistics
- Since:
- 12.3
- Author:
- Niv Ingberg
-
Method Summary
Modifier and TypeMethodDescriptionlongGet total cache hitslongGet total cache misseslongGet number of entries in cachelongGet total hot data cache misses.longGet number of bytes currently used by local cacheGet storage statistics
-
Method Details
-
getCacheSize
long getCacheSize()Get number of entries in cache -
getCacheHitCount
long getCacheHitCount()Get total cache hits -
getCacheMissCount
long getCacheMissCount()Get total cache misses -
getHotDataCacheMissCount
long getHotDataCacheMissCount()Get total hot data cache misses. -
getOffHeapCacheUsedBytes
long getOffHeapCacheUsedBytes()Get number of bytes currently used by local cache -
getStorageStatistics
Collection<BlobStoreStorageStatistics> getStorageStatistics()Get storage statistics
-