8889909192939495
* * @return the number of hits */ @Override public long getCacheGets() { Stats stats = cache.getStats(); return stats.getHits() + stats.getMisses(); }
114115116117118119120121
* * @return the number of removals */ @Override public long getCacheRemovals() { Stats stats = cache.getStats(); return mapToSpecValidStat(stats.getRemoveHits() + stats.getRemoveMisses()); }
121122123124125126127128
147148149150151152153154
9192939495969798
* * @return the number of hits */ @Override public long getCacheGets() { Stats stats = cache.getStats(); return stats.getHits() + stats.getMisses() + unsupportCacheHits.longValue(); }
117118119120121122123124
* * @return the number of removals */ @Override public long getCacheRemovals() { Stats stats = cache.getStats(); return mapToSpecValidStat(stats.getRemoveHits()); }