首页 > 代码库 > SpringCache缓存初探

SpringCache缓存初探

 

<style>body,table tr { background-color: #fff } table tr td,table tr th { border: 1px solid #ccc; text-align: left; padding: 6px 13px; margin: 0 } pre code,table,table tr { padding: 0 } hr,pre code { background: 0 0 } body { font: 16px Helvetica, Arial, sans-serif; line-height: 1.4; color: #333; padding: 10px 15px } strong,table tr th { font-weight: 700 } h1 { font-size: 2em; margin: .67em 0; text-align: center } h2 { font-size: 1.75em } h3 { font-size: 1.5em } h4 { font-size: 1.25em } h1,h2,h3,h4,h5,h6 { font-weight: 700; position: relative; margin-top: 15px; margin-bottom: 15px; line-height: 1.1 } h1,h2 { border-bottom: 1px solid #eee } hr { height: 0; margin: 15px 0; overflow: hidden; border: 0; border-bottom: 1px solid #ddd } a { color: #4183C4 } a.absent { color: #c00 } ol,ul { padding-left: 15px; margin-left: 5px } ol { list-style-type: lower-roman } table tr { border-top: 1px solid #ccc; margin: 0 } table tr:nth-child(2n) { background-color: #aaa } table tr td :first-child,table tr th :first-child { margin-top: 0 } table tr td:last-child,table tr th :last-child { margin-bottom: 0 } img { max-width: 100% } blockquote { padding: 0 15px; border-left: 4px solid #ccc } code,tt { margin: 0 2px; padding: 0 5px; white-space: nowrap; border: 1px solid #eaeaea; background-color: #f8f8f8 } pre code { margin: 0; white-space: pre; border: none } .highlight pre,pre { background-color: #f8f8f8; border: 1px solid #ccc; font-size: 13px; line-height: 19px; overflow: auto; padding: 6px 10px }</style>

简易入门

一、作用

当我们在调用一个缓存方法时会根据相关信息和返回结果作为一个键值对存放在缓存中,等到下次利用同样的参数来调用该方法时将不再执行该方法,而是直接从缓存中获取结果进行返回。

二、启用方式

1.POM.xml 文件中添加spring cache依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-cache</artifactId>
</dependency>

2.添加一种cacheManager的bean

若注解了@EnableCaching,则spring可自动发现并配置cacheManager,只要有一种可用于缓存提供的即可,详情见文献[1]。常用的有Ehcache、redis等实现

为方便起见,这里使用最简单的内存hash map实现。(可以使用Zedis来提供CacheManager。详见附录)

    @Bean
    public CacheManager cacheManager() {
        SimpleCacheManager cacheManager = new SimpleCacheManager();
        cacheManager.setCaches(Collections.singletonList(new ConcurrentMapCache("models")));
        return cacheManager;
    }

3.启用注解@EnableCaching

    @Configuration
    @EnableCaching
    public class CacheConfiguration {
        //...
    }

三、使用方式

三个主要的注解 Cacheable (最常用的注解,用于标注需要缓存方法)、CacheEvict(用于仅清除缓存)、CachePut(用于仅存放缓存)

先定义一个测试POJO: TestModel。 含有name和address两个字符串变量。

    class TestModel {
        String name;
        String address;
        // 省略getter和setter
    }

1.Cacheable

例子:

    @Cacheable(value = "http://www.mamicode.com/models", key = "#testModel.name", condition = "#testModel.address !=  ‘‘ ")
    public TestModel getFromMem(TestModel testModel) throws InterruptedException {
        TimeUnit.SECONDS.sleep(1);
        testModel.setName(testModel.getName().toUpperCase());
        return testModel;
    }

例子里的注解@Cacheable中存在有以下几个元素

  • value (也可使用 cacheNames) : 可看做命名空间,表示存到哪个缓存里了。
  • key : 表示命名空间下缓存唯一key,使用Spring Expression Language(简称SpEL,详见参考文献[5])生成。
  • condition : 表示在哪种情况下才缓存结果(对应的还有unless,哪种情况不缓存),同样使用SpEL

当第一次使用

    {name: ‘XiaoMing‘, address: ‘ChengDu‘}

调用getFromMem时,会等待一秒钟,然后返回

    {name: ‘XIAOMING‘, address: ‘ChengDu‘}

当再次使用name为’XiaoMing’的对象作为参数调用getFromMem时,会立即返回上一个结果,无论参数中的address是什么。

但是如果第一次调用时,address为空字符串,第二次调用仍然需要等待一秒钟,这就是condition的作用。

2.CacheEvict

例子:

    @CacheEvict(value = "http://www.mamicode.com/models", allEntries = true)
    @Scheduled(fixedDelay = 10000)
    public void deleteFromRedis() {
    }

    @CacheEvict(value = "http://www.mamicode.com/models", key = "#name")
    public void deleteFromRedis(String name) {
    }

例子里的注解 @CacheEvict 中存在有以下几个元素
- value (也可使用 cacheNames) : 同Cacheable注解,可看做命名空间。表示删除哪个命名空间中的缓存
- allEntries: 标记是否删除命名空间下所有缓存,默认为false
- key: 同Cacheable注解,代表需要删除的命名空间下唯一的缓存key。

例子中第一段,与 @Scheduled 注解同时使用,每十秒删除命名空间name下所有的缓存。

第二段,调用此方法后删除命名空间models下, key == 参数 的缓存
同样含有unless与condition

3.CachePut

例子

    @CachePut(value = "http://www.mamicode.com/models", key = "#name")
    public TestModel saveModel(String name, String address) {
        return new TestModel(name, address);
    }

例子里的注解 @CachePut 中存在有以下几个元素

  • value: 同上
  • key: 同上
  • condition(unless): 同上

比如可用于后台保存配置时及时刷新缓存。

以上三个注解中还有少量未提到的元素,于附录中叙述。

文献与深入

1.文献

[1] Spring Boot中的缓存支持(一)注解配置与EhCache使用
[2] Spring Boot中的缓存支持(二)使用Redis做集中式缓存
[3] A Guide To Caching in Spring
[4] spring cache官方文档
[5] Spring Expression Language官方文档

2.创建RedisCacheManager

这里我们依赖spring redis

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
 </dependency>

然后在配置中添加RedisConnectionFactory用于获取redis链接

    @Bean
    public RedisConnectionFactory redisConnectionFactory() {
        JedisConnectionFactory jedisConnectionFactory = new JedisConnectionFactory();
        jedisConnectionFactory.setHostName("127.0.0.1");
        jedisConnectionFactory.setPort(6379);
        return jedisConnectionFactory;
    }

还需要一个RedisTemplate。RedisTemplate提供了对Jedis API的高级封装,使用serializers序列化key和value,用于将java与字符串相互转换。这里使用Jackson的serializers(详见附录),来将java对象序列化为json字符串。

jackson类似gson

    @Bean
    public RedisTemplate<String, Object> redisTemplate() {
        RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
        Jackson2JsonRedisSerializer<Object> serializer = jackson2JsonRedisSerializer();
        redisTemplate.setConnectionFactory(redisConnectionFactory());
        redisTemplate.setKeySerializer(new StringRedisSerializer());
        redisTemplate.setValueSerializer(serializer);
        redisTemplate.setHashKeySerializer(new StringRedisSerializer());
        redisTemplate.setHashValueSerializer(serializer);
        return redisTemplate;
    }

然后就可以得到一个RedisCacheManager

    @Bean
    public CacheManager redisCacheManager() {
        RedisCacheManager cacheManager = new RedisCacheManager(redisTemplate());
        cacheManager.setDefaultExpiration(300);
        cacheManager.setLoadRemoteCachesOnStartup(true); // 启动时加载远程缓存
        cacheManager.setUsePrefix(true); //是否使用前缀生成器
        // 这里可进行一些配置 包括默认过期时间 每个cacheName的过期时间等 前缀生成等等
        return cacheManager;
    }

运行文中”三”示例程序,并且可以观察到redis中多了一个models:XiaoMing的key
其中的值为 [\"com.zhe800.TestModel\",{\"name\":\"XIAOMING\",\"address\":\"ChengDu\"}]
注意这里的序列化的实现方式,保存了对象类的信息,保证方法返回与缓存返回一致(当然如果你的setter getter实现不一致,还是会造成不一致的)。 我曾经因为手动序列化造成了一个BUG,一个有序Map存进去,出来失去了有序性  ,当然方法返回值定义成了Map而不是SortedMap也是一个重要原因

3. 上一条中使用的Jackson2JsonRedisSerializer

    @Bean
    public Jackson2JsonRedisSerializer<Object> jackson2JsonRedisSerializer() {
        final Jackson2JsonRedisSerializer<Object> jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer<>(Object.class);
        final ObjectMapper objectMapper = Jackson2ObjectMapperBuilder
            .json().build();
        objectMapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
        objectMapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
        jackson2JsonRedisSerializer.setObjectMapper(objectMapper);
        return jackson2JsonRedisSerializer;
    }

4. Cache* 注解中未提到的元素

共同的:

  1. keyGenerator: 实现 org.springframework.cache.interceptor.KeyGenerator 接口的类bean,用于统一自定义生成key
  2. cacheManager: 用于选择使用哪个cacheManager
  3. cacheResolver: 实现 org.springframework.cache.interceptor.CacheResolver 接口的类bean,用于自定义如何处理缓存

CacheEvict:

  1. beforeInvocation: bool值,标志是否在调用前就清除缓存。防止方法因为异常意外退出。

Cacheable:

  1. sync: 是否同步  从相同key加载值 的方法,原文为:
    Synchronize the invocation of the underlying method if several threads are
    * attempting to load a value for the same key
    实际上我并不清楚此功能如何同步的,可能是缓存消失后多线程访问同一个key的方法,只有一个线程实际调用,其他线程等待缓存结果,具体还需要看CacheManager的实现。在此不妄加解释。

5. 关于缓存TTL等设置

请查看各 CacheManager实现 的配置。

SpringCache缓存初探