154155156157158159160161162163
return stats.getWriteCount(c); return NO_STATS; } public long getTotalWriteCount(String c) { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getTotalWriteCount(c); return NO_STATS; }
161162163164165166167168169170
return stats.getTotalWriteCount(c); return NO_STATS; } public long getTotalReadCount(String c) { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getTotalReadCount(c); return NO_STATS; }
168169170171172173174175176177
return stats.getTotalReadCount(c); return NO_STATS; } public long getTotalHitCount(String c) { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getTotalHitCount(c); return NO_STATS; }
175176177178179180181182183184
return stats.getTotalHitCount(c); return NO_STATS; } public long getReadCount(String c) { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getReadCount(c); return NO_STATS; }
182183184185186187188189190191
return stats.getReadCount(c); return NO_STATS; } public long getHitCount(String c) { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getHitCount(c); return NO_STATS; }
59606162636465666768
public void setContextRef(String cref) { _configRef = cref; } public long getHitCount() { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getHitCount(); return NO_STATS; }
66676869707172737475
return stats.getHitCount(); return NO_STATS; } public long getReadCount() { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getReadCount(); return NO_STATS; }
73747576777879808182
return stats.getReadCount(); return NO_STATS; } public long getTotalHitCount() { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getTotalHitCount(); return NO_STATS; }
80818283848586878889
return stats.getTotalHitCount(); return NO_STATS; } public long getTotalReadCount() { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getTotalReadCount(); return NO_STATS; }
87888990919293949596
return stats.getTotalReadCount(); return NO_STATS; } public long getTotalWriteCount() { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getTotalWriteCount(); return NO_STATS; }