是否有任何方法或任何参数可用于查找要缓存的命中数。我们正在使用Ehcache进行申请。感谢这方面的任何帮助。
答案 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();