Guava入门~CacheStats

构建缓存对象时调用recordStats(),指定可以做缓存统计

LoadingCache<String,TradeAccount> tradeAccountCache = CacheBuilder.newBuilder().recordStats()

获取缓存统计结果

CacheStats cacheStats = cache.stats();

示例

package bbejeck.guava.chapter6.cache;import bbejeck.guava.common.model.TradeAccount;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.CacheLoader;
import com.google.common.cache.CacheStats;
import com.google.common.cache.LoadingCache;
import org.junit.Test;import java.util.concurrent.TimeUnit;import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;
import static org.mockito.Mockito.*;/*** User: Bill Bejeck* Date: 7/22/13* Time: 9:55 PM*/
public class CacheStatsTest {private CacheLoader<String, TradeAccount> cacheLoader = mock(CacheLoader.class);@Testpublic void testGetCacheStats() throws Exception {TradeAccount expectedTradeAccount = new TradeAccount.Builder().build();when(cacheLoader.load("223")).thenReturn(expectedTradeAccount);when(cacheLoader.load("000")).thenThrow(new RuntimeException("Bad Value"));LoadingCache<String, TradeAccount> tradeAccountCache = CacheBuilder.newBuilder().maximumSize(5000L).expireAfterAccess(10l, TimeUnit.MILLISECONDS).recordStats().build(cacheLoader);TradeAccount tradeAccount = tradeAccountCache.get("223");assertThat(tradeAccount, is(expectedTradeAccount));TradeAccount tradeAccount1 = tradeAccountCache.get("223");assertThat(tradeAccount1, is(expectedTradeAccount));Thread.sleep(20);TradeAccount tradeAccount2 = tradeAccountCache.get("223");assertThat(tradeAccount2, is(expectedTradeAccount));try{tradeAccountCache.get("000");}catch (RuntimeException e){//Ignore expected}CacheStats stats = tradeAccountCache.stats();assertThat(stats.evictionCount(),is(1l));assertThat(stats.hitCount(),is(1l));assertThat(stats.missCount(),is(3l));assertThat(stats.hitRate(),is((double)1/4));assertThat(stats.loadExceptionCount(),is(1l));assertThat(stats.loadExceptionRate(),is((double)1/3));assertThat(stats.loadSuccessCount(),is(2l));verify(cacheLoader, times(2)).load("223");}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/495567.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Linux下细碎温度等的监控与调整

作者: zhania 出自: http://www.linuxdiyf.com 装tp-fancontrol&#xff0c;限制一下gpu的温度ubuntuCPU的温度cat /proc/cpuinfo显卡温度 有个sensor applet&#xff0c;装了都能透露表现在终端里运转cpufreq-info检察CPU信息 sudo cpufreq-selector -c cpu号梗概 sudo cpufr…

深度分析:区块链技术未来发展的 8 个趋势

来源&#xff1a;36氪CB Insigh日前发表了一份关于区块链技术的研究报告&#xff0c;结合区块链目前的发展现状&#xff0c;提出了区块链技术未来发展的8个趋势。虽然加密货币和加密资产的价格已从2017年的峰值回落&#xff0c;但区块链创业公司的股权投资&#xff0c;在2018年…

小甲鱼 OllyDbg 教程系列 (十六) : 简单病毒的逆向分析

小甲鱼 OD 教程&#xff08; 多态 和 变形 分析 &#xff09;&#xff1a; https://www.bilibili.com/video/av6889190?p25 https://www.bilibili.com/video/av6889190?p26 ReverseMe Tutorial.zip&#xff1a;https://pan.baidu.com/s/1xOUvXqX6lVdcCwQvpql…

Oracle 9i 在 Red Hat 7.1 和 7.2 上的装配

泉源&#xff1a;网海拾贝 本文是我在 Red Hat 7.1 &#xff08;内核版本&#xff1a;2.4.2-2 &#xff09;和 7.2&#xff08;内核版本&#xff1a;2.4.7-10&#xff09; 上装配 Oracle 9i (9.0.1) 数据库的总结&#xff0c;要是需求更多的信息请参考 Oracle 的文档&#xff1…

Guava入门~RemovalListener

RemovalNotification 实现Map.Entry接口 getCause()获取RemovalCause 1.COLLECTED: key或value被垃圾回收&#xff1b; 2.EXPIRED:已过期&#xff1b; 3.EXPLICIT:手动移除&#xff1b; 4.REPLACED:被替换&#xff1b; 5.SIZE:超过了最大限制数量。 package bbejeck.gu…

反调试技术揭秘(转)

在调试一些病毒程序的时候&#xff0c;可能会碰到一些反调试技术&#xff0c;也就是说&#xff0c;被调试的程序可以检测到自己是否被调试器附加了&#xff0c;如果探知自己正在被调试&#xff0c;肯定是有人试图反汇编之类的方法破解自己。为了了解如何破解反调试技术&#xf…

全文解析:面向基于区块链的「机器人经济学」概念中,如何验证自主智能体的行为?...

原文来源&#xff1a;arXiv作者&#xff1a;Konstantin Danilov、Ruslan Rezin、Alexander Kolotov、 Ilya Afanasyev「雷克世界」编译&#xff1a;嗯~是阿童木呀、KABUDA、EVA随着AI技术的发展&#xff0c;自主智能体在速度和精确度方面有了很大的提升&#xff0c;变得更加智能…

Ajax--让网站与时俱进

一。加载数据1.追加Html$(#dictionary).load(a.html);2.操作JavaScript$.getJSON(b.json,function(){});3.加载XML文档$.get(d.xml,function(data){});二。选择数据格式&#xff1a;Html:不需要与其它程序共享数据的情况下&#xff0c;以HTML片段提供外部数据。JSON:数据可重用…

小甲鱼 OllyDbg 教程系列 (十七) : 反调试

小甲鱼 OD 教程&#xff1a;https://www.bilibili.com/video/av6889190?p27 ReverseMe.A.B.C.D 下载地址&#xff1a;https://pan.baidu.com/s/1_aVUa6aDATSpE6bQgc6hLA 提取码&#xff1a;ebo2 [调试篇] 调试篇 - 第二十二讲 - OD使用教程22&#xff08;视频课件试验程序…

一张图看懂微软人工智能

来源&#xff1a;微软科技摘要&#xff1a;对于微软人工智能&#xff0c;你了解多少&#xff1f;是Cortana&#xff1f;是小冰&#xff1f;还是机器翻译&#xff1f;看完下面这张信息图&#xff0c;你会发现你所了解的&#xff0c;很可能只是冰山一角。看完你是否想要立刻参加微…

php中isset() , unnset(), empty()函数

isset()函数 , unnset()函数, empty() 函数是一个语言结构而非函数&#xff0c;因此它无法被变量函数调用。 isset()、empty() 只检测变量&#xff0c;检测任何非变量的东西都将导致解析错误。 后边的语句是错误而且将不会起作用&#xff1a; empty(addslashes($name))。 若想检…

mov 和 lea 的区别有哪些?

From&#xff1a;https://www.zhihu.com/question/40720890?sortcreated 汇编中 mov 和 lea 的区别是什么 &#xff1f;&#xff1a;https://bbs.csdn.net/topics/320046644 lea 是“load effective address”的缩写&#xff0c; 简单的说&#xff0c; lea指令可以用来将一个…

Guava入门~EventBus~Event Publishing示例

Event Publishing示例 public class SimpleTradeExecutor {private EventBus eventBus;public SimpleTradeExecutor(EventBus eventBus) {this.eventBus eventBus;}public void executeTrade(TradeAccount tradeAccount, double amount, TradeType tradeType){TradeAccountEv…

刘强东宣布: 未来京东将减员50%,每天工作3小时!无人公司来了……

来源&#xff1a;全球人工智能摘要&#xff1a;在这个时代&#xff0c;你的工作会背叛你&#xff0c;你的行业会背叛你&#xff0c;你的专业会背叛你&#xff0c;唯一不能背叛你的&#xff0c;是你的认知和你的能力&#xff01;京东目前员工的总数是16万&#xff0c;那么庞大的…

Pycharm 快捷键 整理

From&#xff1a;http://www.cnblogs.com/themost/p/6900370.html Pycharm 版本控制之本地 Git 用法&#xff1a;https://blog.csdn.net/u013088062/article/details/50350520PyCharm 中文指南(Win版)&#xff1a;https://pycharm.iswbm.com/ github&#xff1a;https://github…

区块链的技术简史与未来前景,从互联网进化角度分析

作者&#xff1a;刘锋 互联网进化论作者摘要&#xff1a;区块链是当前科技领域最令人关注的技术之一&#xff0c;如何理解这个新技术&#xff0c;本文从互联网的技术生态、区块链的诞生、比特币的发展&#xff0c;互联网大脑模型的形成多个维度&#xff0c;对区块链技术的优劣和…

Guava入门~EventBus~细粒度订阅

将交易细分为买/卖&#xff1a; public class SellEvent extends TradeAccountEvent {public SellEvent(TradeAccount tradeAccount, double amount, Date tradExecutionTime) {super(tradeAccount, amount, tradExecutionTime, TradeType.SELL);} }public class BuyEvent ext…

转:Python中的文件和目录操作

转自:http://tech.it168.com/a2009/0703/600/000000600339.shtml 【IT168 技术文档】摘要&#xff1a;对于文件和目录的处理&#xff0c;虽然可以通过操作系统命令来完成&#xff0c;但是Python语言为了便于开发人员以编程的方式处理相关工作&#xff0c;提供了许多处理文件和目…

ELK 日志系统

Elastic 官方文档&#xff1a;https://www.elastic.co/guide/index.html elasticsearch github&#xff1a;https://github.com/elastic/elasticsearch logstash github&#xff1a;https://github.com/elastic/logstash kibana github&#xff1a;https://github.com/elastic…

深入浅出:Microsoft分布式事务处理协调器

深入浅出&#xff1a;Microsoft分布式事务处理协调器 http://www.searchdatabase.com.cn/showcontent_44713.htmposted on 2011-03-19 16:19 Fanr_Zh 阅读(...) 评论(...) 编辑 收藏 转载于:https://www.cnblogs.com/Amaranthus/archive/2011/03/19/1988870.html