Guava Cache,网上介绍很多,我就不赘述了. 分享一篇好的文章: Guava Cache内存缓存使用实践-定时异步刷新及简单抽象封装 Google Guava 3-缓存 在原作者基础上,我做了一些修改: public void loadValueWhenStarted(){ } 该方法不再定义为抽象方法.没必要抽象,当有使用场景的时候子类重载该方法不就完了嘛. 作者也没有给出使用示例,这里提供一个我的使用示例: @Log4j2 public class DataIdCache exten…
1. Spring local cache [Spring 本地缓存] Spring provided cacheable annotation since 3.1. It's very super convinient to use and can obviously boost application performance. 从3.1版本开始,Spring提供了cacheable注解.它使用起来非常方便,还可以很明显的提升应用性能.具体的,怎么使用呢? First, create a…
接上一篇: A comparison of local caches (1) [本地缓存之比较 (1)] This article will compare the asynchronous local caches. Currently Spring @Cacheable doesn't support async cache by default (we can use some tricks to achieve the goal though). Guava and Caffiene s…