서버를 실행할 때 Ehcache에 대한 모든 통계를보고 싶습니다. 설명서에서 "StatisticsGateway"및 "SampledCache"와 같은 개체를 발견했습니다. 나는 ehcache 2.9를 사용하고있다.Ehcache 통계
StatisticsGateway를 사용하면 통계가 불완전 해집니다. SampledCache 객체를 사용할 때 더 많은 통계를 얻지 만, 어떤 방법 으로든 객체를 검색하는 데는 아무 것도 설명되어 있지 않습니다.
Cache cache = cacheManager.getCache("name");
StatisticsGateway statistic = cache.getStatistics();
statistic.cacheHitCount() etc.
가 어떻게 SampledCache 개체를 얻을 : 예를 들어
는 StatisticsGateway 객체를 얻는 것은 다음과 같다? 사전에
감사합니다!