浅谈Java中GuavaCache返回Null的注意事项
程序员文章站
2022-03-04 14:55:51
guava在实际的java后端项目中应用的场景还是比较多的,比如限流,缓存,容器操作之类的,有挺多实用的工具类,这里记录一下,在使用guavacache,返回null的一个问题i. 常见使用姿势@te...
guava在实际的java后端项目中应用的场景还是比较多的,比如限流,缓存,容器操作之类的,有挺多实用的工具类,这里记录一下,在使用guavacache,返回null的一个问题
i. 常见使用姿势
@test public void testguava() { loadingcache<string, string> cache = cachebuilder.newbuilder().build(new cacheloader<string, string>() { @override public string load(string key) throws exception { if ("hello".equals(key)) { return "word"; } return null; } }); string word = cache.getunchecked("hello"); system.out.println(word); system.out.println(cache.getunchecked("word")); }
上面是一个非常简单的测试case,需要注意的是,cache.get("word") 的执行,并不如逾期的返回的是null,而是会抛一个异常出来
word
com.google.common.cache.cacheloader$invalidcacheloadexception: cacheloader returned null for key word.
at com.google.common.cache.localcache$segment.getandrecordstats(localcache.java:2287)
...
从异常描述能看出,不允许返回null,这一块之前倒是没怎么注意,因此对于null的情况,要么定义一个标记表示不存在,要么在load()方法中主动抛一个异常出来,在使用的时候注意下,通过异常的使用方式,可以如下
public class novlaingauvaexception extends exception { public novlaingauvaexception(string msg) { super(msg); } @override public synchronized throwable fillinstacktrace() { return this; } }
说明:为什么重写fillinstacktrace方法
对于这种缓存未命中的情况下,一般而言是不需要关注完整的堆栈信息的,没有数据而已,可以节省一点点性能(当然除非是在高频率的抛出时,才会有表现症状)
其次就是get与getunchecked的区别了
- get要求显示处理exception状况
- getunchecked 一般是可确认不会有问题的场景,直接调用
改造之后,我们的cache如下
loadingcache<string, string> cache = cachebuilder.newbuilder().build(new cacheloader<string, string>() { @override public string load(string key) throws exception { if ("hello".equals(key)) { return "word"; } throw new novlaingauvaexception(); } });
到此这篇关于浅谈java中guavacache返回null的注意事项的文章就介绍到这了,更多相关guavacache返回null内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!