Interface PWCFileCacheStats
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CountStatisticgetCountContentHits()The Number of hits on cached file contentCountStatisticgetCountContentMisses()The Number of misses on cached file contentCountStatisticgetCountEntries()The number of current cache entries.CountStatisticgetCountHits()The Number of cache lookup hitsCountStatisticgetCountInfoHits()The Number of hits on cached file infoCountStatisticgetCountInfoMisses()The Number of misses on cached file infoCountStatisticgetCountMisses()The Number of cache lookup missesCountStatisticgetCountOpenEntries()The number of current open cache entriesCountStatisticgetFlagEnabled()Returns whether the file cache us enabled.CountStatisticgetMaxEntries()The maximum number of cache entriesCountStatisticgetMaxHeapCacheSize()The Maximum heap space used for cacheCountStatisticgetMaxMmapCacheSize()The Maximum Memory Map size to be used for cachingCountStatisticgetMaxOpenEntries()The Maximum number of open cache entriesCountStatisticgetSecondsMaxAge()The maximum age of a valid cache entryCountStatisticgetSizeHeapCache()The Heap space used for cacheCountStatisticgetSizeMmapCache()The size of Mapped memory used for caching-
Methods inherited from interface org.glassfish.j2ee.statistics.Stats
getStatistic, getStatisticNames, getStatistics
-
-
-
-
Method Detail
-
getFlagEnabled
CountStatistic getFlagEnabled()
Returns whether the file cache us enabled. 1 of enabled, 0 otherwise- Returns:
- enabled
-
getSecondsMaxAge
CountStatistic getSecondsMaxAge()
The maximum age of a valid cache entry- Returns:
- cache entry max age
-
getCountEntries
CountStatistic getCountEntries()
The number of current cache entries. A single cache entry represents a single URI- Returns:
- current cache entries
-
getMaxEntries
CountStatistic getMaxEntries()
The maximum number of cache entries- Returns:
- max cache entries
-
getCountOpenEntries
CountStatistic getCountOpenEntries()
The number of current open cache entries- Returns:
- open cache entries
-
getMaxOpenEntries
CountStatistic getMaxOpenEntries()
The Maximum number of open cache entries- Returns:
- Max open cache entries
-
getSizeHeapCache
CountStatistic getSizeHeapCache()
The Heap space used for cache- Returns:
- heap size
-
getMaxHeapCacheSize
CountStatistic getMaxHeapCacheSize()
The Maximum heap space used for cache- Returns:
- Max heap size
-
getSizeMmapCache
CountStatistic getSizeMmapCache()
The size of Mapped memory used for caching- Returns:
- Mapped memory size
-
getMaxMmapCacheSize
CountStatistic getMaxMmapCacheSize()
The Maximum Memory Map size to be used for caching- Returns:
- Max Memory Map size
-
getCountHits
CountStatistic getCountHits()
The Number of cache lookup hits- Returns:
- cache hits
-
getCountMisses
CountStatistic getCountMisses()
The Number of cache lookup misses- Returns:
- cache misses
-
getCountInfoHits
CountStatistic getCountInfoHits()
The Number of hits on cached file info- Returns:
- hits on cached file info
-
getCountInfoMisses
CountStatistic getCountInfoMisses()
The Number of misses on cached file info- Returns:
- misses on cache file info
-
getCountContentHits
CountStatistic getCountContentHits()
The Number of hits on cached file content- Returns:
- hits on cache file content
-
getCountContentMisses
CountStatistic getCountContentMisses()
The Number of misses on cached file content- Returns:
- missed on cached file content
-
-