gpt4 book ai didi

caching - Ehcache 按键统计

转载 作者:行者123 更新时间:2023-12-04 14:07:22 25 4
gpt4 key购买 nike

我有兴趣获取有关我正在运行的 Ehcache 的统计信息。

我想查看一段时间内给定键的命中/未命中数。也许以 map 的形式。例如。

经过一小时(或运行了多久)

Key A had 30 hits and 2 misses
Key B had 400 hits and 100 misses
Key C had 2 hits and 1 misses
Key D had 150 hits and 10 misses



我浏览了文档(SampledCacheStatistics、SampledCacheStatisticsImpl、SampledCacheStatisticsWrapper 等),我很难弄清楚这一点。

有没有其他人有实现这个的经验?

对此的任何帮助或想法将不胜感激!

最佳答案

EhCache Monitor为您提供此类信息... http://ehcache.org/documentation/monitor.html

程序访问可用如下:

    CacheManager cacheManager = CacheManager.getInstance();
String[] cacheNames = cacheManager.getCacheNames();
for (int i = 0; i < cacheNames.length; i++) {
String cacheName = cacheNames[i];
System.out.println(cacheName+" - "+ cacheManager.getCache(cacheName).getStatistics().toString());
}

关于caching - Ehcache 按键统计,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2007385/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com