spring data Redis整合spring cache实战(附源码及源码分析)

这里是weihubeats ,觉得文章不错可以关注公众号小奏技术,文章首发。拒绝营销号,拒绝标题党

背景

最近在研究缓存框架,打算写一个多级缓存框架的sdk。所以想借鉴(抄袭)下spring的缓存框架的实现

spring cache reids

spring cache对各种缓存进行了整合抽象。核心的接口是CacheManager

可以看到有很多CacheManager的实现,之前写过本地缓存Caffeine的分布式扩展。其中使用的就是SimpleCacheManager

今天来看看spring boot是如何自动整合装配redis实现缓存的

整合实战

  • spring boot version: 2.7.0
  1. 引入依赖
xml 复制代码
         <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>
  1. 添加CacheConfig配置
java 复制代码
@Configuration(proxyBeanMethods = false)
public class CacheConfig {

    @Bean
    public RedisCacheConfiguration cacheConfiguration() {
        return RedisCacheConfiguration.defaultCacheConfig()
            .entryTtl(Duration.ofMinutes(60))
            .disableCachingNullValues()
            .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(new GenericJackson2JsonRedisSerializer()));
    }

    @Bean
    public RedisCacheManagerBuilderCustomizer redisCacheManagerBuilderCustomizer() {
        return (builder) -> builder
            .withCacheConfiguration("student",
                RedisCacheConfiguration.defaultCacheConfig().entryTtl(Duration.ofMinutes(10)))
            .withCacheConfiguration("customerCache",
                RedisCacheConfiguration.defaultCacheConfig().entryTtl(Duration.ofMinutes(5)));
    }
    
    
}
  1. 添加redis配置
yml 复制代码
spring:
  redis:
    host: 127.0.0.1
    port: 6379
    password: 123456
    database: 1

这里随便配置了两个缓存,一个名字叫student,一个叫customerCache

  1. 使用
java 复制代码
@RestController
@Slf4j
@RequiredArgsConstructor
public class TestController {

    @GetMapping("/test")
    @Cacheable(value = "student")
    public  List<StudentVO> test(String name) {
        return mockSelectSql();
    }

    private List<StudentVO> mockSelectSql() {
        log.info("开始查询数据");
        List<StudentVO> studentVOS = Lists.newArrayList(new StudentVO(1L, "小奏技术", 18), new StudentVO(2L, "小奏技术1", 19));
        return studentVOS;
    }
    
}

可以看到使用spring cache提供的@Cacheable就自动整合上了。是不是非常简单

我们来简单看一下源码吧

实现原理

我们来探究下引入spring-boot-starter-data-redis是如何完成自动装配的

我们首先看看CacheManager的实现吧

可以看到spring-boot-starter-data-redis中有一个RedisCacheManager

RedisCacheManager实现了CacheManager,那么RedisCacheManager是如何自动装配的呢

spring-boot-autoconfigure中存在RedisCacheConfiguration这个类

如果你没有配置CacheManager这个bean,并且存在RedisConnectionFactory这个bean和class就会出发RedisCacheConfiguration的自动装配

RedisConnectionFactory则存在于spring-boot-starter-data-redis

有两个实现

这里我们就不继续深入追踪了,已经可以看到RedisCacheManager是如何自动装配的

spring cache中对CacheManager进行了封装。所有的缓存操作都由CacheManager去实现。

所以底层你要实现自己的cache逻辑或者说各种不同的cache,核心是实现自己的CacheManager

至于缓存的维护,还记得我们配置的缓存吗

这里的RedisCacheManagerBuilderCustomizer实际是一个函数式接口。 真正的执行逻辑还是在withCacheConfiguration

都丢在一个map里面

最终将这个map传入到RedisCacheManager

Spring中缓存的抽象类AbstractCacheManager就有一个抽象方法loadCaches

用来实现缓存的加载的,最终reids的缓存配置加载就是通过重写loadCaches

RedisCache则实现了Cache接口

从而实现redis的各种缓存操作。spring cache就是操作Cache

自此大致分析了spring-boot-starter-data-redis是如何自动整合spring cache

源码

相关推荐
广州山泉婚姻4 分钟前
解锁高效开发:Spring Boot 3和MyBatis-Flex在智慧零工平台后端的应用实战
人工智能·spring boot·spring
JuiceFS6 分钟前
深度解析 JuiceFS 权限管理:Linux 多种安全机制全兼容
运维·后端
站大爷IP12 分钟前
python3如何使用QT编写基础的对话框程序
后端
老夫运道一向好19 分钟前
【YashanDB监控运维平台(YCM)】登录安全设置
后端
bing_15823 分钟前
Spring Boot 中ConditionalOnClass、ConditionalOnMissingBean 注解详解
java·spring boot·后端
凌览30 分钟前
斩获 7k Star,这个桌宠项目火了🔥
前端·javascript·后端
用户05956611920942 分钟前
Java 基础篇必背综合知识点总结包含新技术应用及实操指南
java·后端
小杰来搬砖1 小时前
对 JWT(JSON Web Token)令牌的完整讲解
后端
他日若遂凌云志1 小时前
Redis 分布式集群与主从复制的一键部署脚本:从繁琐到高效的自动化方案
后端