64656667686970717273
public void setContextRef(String cref) { _configRef = cref; } public long getHitCount() { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getHitCount(); return NO_STATS; }
71727374757677787980
return stats.getHitCount(); return NO_STATS; } public long getReadCount() { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getReadCount(); return NO_STATS; }
78798081828384858687
return stats.getReadCount(); return NO_STATS; } public long getTotalHitCount() { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getTotalHitCount(); return NO_STATS; }
85868788899091929394
return stats.getTotalHitCount(); return NO_STATS; } public long getTotalReadCount() { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getTotalReadCount(); return NO_STATS; }
9293949596979899100101
return stats.getTotalReadCount(); return NO_STATS; } public long getTotalWriteCount() { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getTotalWriteCount(); return NO_STATS; }
99100101102103104105106107108
return stats.getTotalWriteCount(); return NO_STATS; } public long getWriteCount() { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getWriteCount(); return NO_STATS; }
106107108109110111112113114
return stats.getWriteCount(); return NO_STATS; } public void reset() { CacheStatistics stats = getStatistics(); if (stats != null) stats.reset(); }
112113114115116117118119120121
if (stats != null) stats.reset(); } public Date sinceDate() { CacheStatistics stats = getStatistics(); if (stats != null) return stats.since(); return null; }
119120121122123124125126127128
return stats.since(); return null; } public Date startDate() { CacheStatistics stats = getStatistics(); if (stats != null) return stats.start(); return null; }
147148149150151152153154155156
} return null; } public long getWriteCount(String c) { CacheStatistics stats = getStatistics(); if (stats != null) return stats.getWriteCount(c); return NO_STATS; }