缓存命中(ehCache)

时间:2012-06-22 04:16:12

标签: oracle ehcache

是否有任何方法或任何参数可用于查找要缓存的命中数。我们正在使用Ehcache进行申请。感谢这方面的任何帮助。

1 个答案:

答案 0 :(得分:2)

你看过Cache.getStatistics()吗?

http://ehcache.org/apidocs/net/sf/ehcache/Cache.html#getStatistics() http://ehcache.org/apidocs/net/sf/ehcache/Statistics.html

Cache cache = cacheManager.getCache("someCache");
Statistics stats = cache.getStatistics();

long hits  = stats.getInMemoryHits();
long misses = stats.getInMemoryMisses();