Guava入门~RemovalListener

RemovalNotification

实现Map.Entry接口

getCause()获取RemovalCause

1.COLLECTED: key或value被垃圾回收;

2.EXPIRED:已过期;

3.EXPLICIT:手动移除;

4.REPLACED:被替换;

5.SIZE:超过了最大限制数量。

package bbejeck.guava.chapter6.cache;/*** User: Bill Bejeck* Date: 4/22/13* Time: 9:37 PM*/import com.google.common.cache.RemovalCause;
import com.google.common.cache.RemovalListener;public abstract class BaseRemovalListener<K, V> implements RemovalListener<K, V> {protected RemovalCause removalCause;protected K removedKey;protected V removedValue;public RemovalCause getRemovalCause() {return removalCause;}public K getRemovedKey() {return removedKey;}public V getRemovedValue() {return removedValue;}
}
package bbejeck.guava.chapter6.cache;import bbejeck.guava.common.model.TradeAccount;
import com.google.common.cache.RemovalListener;
import com.google.common.cache.RemovalNotification;/*** User: Bill Bejeck* Date: 4/20/13* Time: 11:49 PM*/
public class TradeAccountRemovalListener extends BaseRemovalListener<String, TradeAccount> {public void onRemoval(RemovalNotification<String, TradeAccount> notification) {this.removalCause = notification.getCause();this.removedKey = notification.getKey();this.removedValue = notification.getValue();}
}
package bbejeck.guava.chapter6.cache;import bbejeck.guava.common.model.Book;
import bbejeck.guava.common.model.TradeAccount;
import bbejeck.guava.common.service.BookServiceImpl;
import bbejeck.guava.common.service.TradeAccountService;
import com.google.common.base.Ticker;
import com.google.common.cache.*;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;import java.util.concurrent.TimeUnit;import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;/*** User: Bill Bejeck* Date: 4/20/13* Time: 10:17 PM*/
public class RemovalListenerTest {private static TradeAccountService tradeAccountService;private static BookServiceImpl bookService;@BeforeClasspublic static void startUpBeforeAll() {bookService = new BookServiceImpl();tradeAccountService = new TradeAccountService();}@AfterClasspublic static void tearDownAfterAll() throws Exception {bookService.shutdown();tradeAccountService.shutdown();}@Testpublic void testLoadingCacheExpireAfterWrite() throws Exception {TradeAccountRemovalListener removalListener = new TradeAccountRemovalListener();LoadingCache<String, TradeAccount> tradeAccountCache = CacheBuilder.newBuilder().expireAfterWrite(5L, TimeUnit.MILLISECONDS).maximumSize(5000L).removalListener(removalListener).ticker(Ticker.systemTicker()).build(new CacheLoader<String, TradeAccount>() {@Overridepublic TradeAccount load(String key) throws Exception {return tradeAccountService.getTradeAccountById(key);}});//223,"Rogers, Jim",250000.12TradeAccount tradeAccount = tradeAccountCache.get("223");assertThat(tradeAccount.getBalance(), is(250000.12));Thread.sleep(10L);tradeAccountCache.get("223");assertThat(removalListener.getRemovalCause(), is(RemovalCause.EXPIRED));assertThat(removalListener.getRemovedValue(), is(tradeAccount));}@Testpublic void testRemovalAfterLastAccessed() throws Exception {BookRemovalListener bookRemovalListener = new BookRemovalListener();LoadingCache<String, Book> bookCache = CacheBuilder.newBuilder().expireAfterAccess(10, TimeUnit.MILLISECONDS).softValues().recordStats().removalListener(bookRemovalListener).build(new CacheLoader<String, Book>() {@Overridepublic Book load(String key) throws Exception {return bookService.findBookByIsbn(key);}});Book book = bookCache.get("ISBN-234567");assertThat(book.getAuthor(), is("Vandeley, Art"));assertThat(book.getIsbn(), is("ISBN-234567"));Thread.sleep(20);//Need to call again to force evictionBook bookII = bookCache.get("ISBN-234567");assertThat(bookII.getAuthor(), is("Vandeley, Art"));assertThat(bookII.getIsbn(), is("ISBN-234567"));CacheStats cacheStats = bookCache.stats();assertThat(cacheStats.evictionCount(),is(1l));assertThat(bookRemovalListener.getRemovalCause(), is(RemovalCause.EXPIRED));assertThat(bookRemovalListener.getRemovedKey(), is("ISBN-234567"));assertThat(bookRemovalListener.getRemovedValue(), is(book));}@Testpublic void testInvalidateBadValue() throws Exception {BookRemovalListener bookRemovalListener = new BookRemovalListener();LoadingCache<String, Book> bookCache = CacheBuilder.newBuilder().expireAfterAccess(10, TimeUnit.HOURS).softValues().recordStats().removalListener(bookRemovalListener).build(new CacheLoader<String, Book>() {@Overridepublic Book load(String key) throws Exception {return bookService.findBookByIsbn(key);}});Book book = bookCache.get("ISBN-234567");assertThat(book.getTitle(), is("Be an Architect"));bookCache.invalidate("ISBN-234567");assertThat(bookRemovalListener.getRemovalCause(), is(RemovalCause.EXPLICIT));assertThat(bookRemovalListener.getRemovedValue().getTitle(), is("Be an Architect"));}@Testpublic void testRefreshingCacheValues() throws Exception {TradeAccountRemovalListener removalListener = new TradeAccountRemovalListener();LoadingCache<String, TradeAccount> tradeAccountCache = CacheBuilder.newBuilder().concurrencyLevel(10).refreshAfterWrite(5L, TimeUnit.MILLISECONDS).removalListener(removalListener).ticker(Ticker.systemTicker()).recordStats().build(new CacheLoader<String, TradeAccount>() {@Overridepublic TradeAccount load(String key) throws Exception {return tradeAccountService.getTradeAccountById(key);}});//223,"Rogers, Jim",250000.12TradeAccount tradeAccount = tradeAccountCache.get("223");assertThat(tradeAccount.getBalance(), is(250000.12));Thread.sleep(10L);tradeAccountCache.get("223");CacheStats stats = tradeAccountCache.stats();assertThat(stats.loadSuccessCount(),is(2l));assertThat(removalListener.getRemovalCause(), is(RemovalCause.REPLACED));assertThat(removalListener.getRemovedValue(), is(tradeAccount));}}

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

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

相关文章

反调试技术揭秘(转)

在调试一些病毒程序的时候&#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

洪小文: 今天的AI只是一个黑盒,仍需与HI密切配合

来源&#xff1a;微软研究院AI头条摘要&#xff1a;在刚刚结束的微软Build 2018开发者大会上&#xff0c;微软小娜展示了自己是如何智能地预定会议室的&#xff0c;似与常人无异&#xff0c;但实际上人工智能还远不像你想的那么聪明&#xff01;微软亚洲研究院院长洪小文在接受…

Kibana Guide ( Kibana 向导 )

Kibana Guide 官网地址&#xff1a;https://www.elastic.co/guide/en/kibana/current/index.html Kibana 用户指南&#xff08;构建你自己的仪表盘&#xff09;&#xff1a;https://segmentfault.com/a/1190000015140923 Kibana快速上手&#xff1a;https://www.jianshu.com/…

Guava入门~EventBus~AsyncEventBus

AsyncEventBus 示例 package bbejeck.guava.chapter7.async;import bbejeck.guava.chapter7.EventBusTestBase; import bbejeck.guava.chapter7.subscriber.SlowProcessSubscriber; import com.google.common.eventbus.AsyncEventBus; import org.junit.Before; import org.ju…

iisapp 查看PID所对应的IIS应用程序池及详细介绍

从IIS6.0可以在IIS中架设多个站点并给每个站点指定不同的应用程序池&#xff0c;分别对各程序池进行CPU,内存的使用限制。而每一个应用程序池会在任务管理器中对应一个系统进程(w3wp.exe)&#xff0c;每一个进程都有一个PID来标识。当某个w3wp.exe进程占用资源很高的时候如何快…

Python 操作 Elasticsearch 实现 增 删 改 查

Github 地址&#xff1a;https://github.com/elastic/elasticsearch-py/blob/master/docs/index.rst 官网地址&#xff1a;https://elasticsearch-py.readthedocs.io/en/latest/index.html Python-ElasticSearch&#xff0c;python对ES进行写入、更新、删除、搜索&#xff1a…