使用SpringCache操作Redis缓存数据

SpringCache概念

SpringCache是一个框架,实现了基于注解的缓存功能,只需要简单的加一个注解,就能实现缓存功能。

SpringCache提供了一层抽象,底层可以切换不同的缓存实现,例如:

  • EHCache
  • Caffeine
  • Redis

使用(导入redis跟SpringCache的 依赖即可)

复制代码
 <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-redis</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-cache</artifactId>
        </dependency>

SpringCache常用注解

|----------------|------------------------------------------------------------|
| @EnableCaching | 开启缓存注解功能,加在启动类上 |
| @Cacheable | 加在方法上,执行方法前会先去缓存中查看是否有缓存有的话直接返回,没有的话会通过反射调用方法,并将方法的返回值缓存起来 |
| @CachPut | 将方法的返回值,直接放在缓存中 |
| @CacheEvict | 将一条数据或者多条数据从缓存中删除 |

@Cacheable使用

复制代码
@GetMapping("/test")
@Cacheable(value = "test",key = "#key",unless = "#result == null") //组合起来的key就是test:: + 入参key
public String test(String key) {
return "hello SpringCache";
}

如果入参是对象:

复制代码
@GetMapping("/test")
@Cacheable(value = "test",key = "#user.id",unless = "#result == null") //组合起来的key就是test:: + 入参user的id属性
public String test(User user) {
return "hello SpringCache";
}

unless

unless的意思就是: 当不满足条件的时候进行缓存 也就是condition 相反,因为condition中没有#result这个spel表达式,所以要使用unless

底层知识:

Cacheable底层是通过代理来实现的,当你调用的时候创建一个Controller的代理对象,会先拼接key,判断在缓存中是否存在,存在直接返回,不存在通过反射调用方法。如果返回值满足指定条件(condition、unless)会将返回值缓存起来。

@CachePut 使用

CachePut会将返回值放到缓存中,unless跟condition跟Cacheable一样

还有一个不同就是Cacheable的key没有#result这个表达式,CachePut有

可以看一下CachePut源码的注释:

复制代码
@GetMapping("/test3")
@CachePut(value = "test3",key = "#key")
public List<String > test3(String key) {
List<String > list = new ArrayList<>();
list.add("1");
list.add("1");
list.add("1");
list.add("1");
return list;
}

@CacheEvict 使用

精准删除(test4::key)

复制代码
@GetMapping("/test4")
@CacheEvict(value = "test4",key = "#key")
public List<String > test4(String key) {
return null;
}

全部删除(test4::)

复制代码
@GetMapping("/test4")
@CacheEvict(value = "test4",allEntries = true)
public List<String > test4(String key) {
return null;
}
相关推荐
lay_liu11 小时前
Linux安装redis
linux·运维·redis
lay_liu13 小时前
ubuntu 安装 Redis
linux·redis·ubuntu
不是株15 小时前
Redis(入门篇)
数据库·redis·缓存
qq_2816842117 小时前
Apt-Serve:基于混合缓存与自适应调度突破LLM推理KV缓存瓶颈,吞吐量提升8.8倍
缓存
1104.北光c°18 小时前
深入浅出 Elasticsearch:从搜索框到精准排序的架构实战
java·开发语言·elasticsearch·缓存·架构·全文检索·es
知识分享小能手18 小时前
Redis入门学习教程,从入门到精通, Redis Stack 完整语法知识点及使用指南(7)
数据库·redis·学习
一个有温度的技术博主18 小时前
Redis系列八:Jedis连接池在java中的使用
java·redis·bootstrap
FakeOccupational18 小时前
【电路笔记 STM32】Cortex-M7 内核上的数据缓存结构图 + MPU内存保护单元 + Cache基本操作 + Cache&DMA 时序图
笔记·stm32·缓存
AMoon丶19 小时前
Golang--内存管理
开发语言·后端·算法·缓存·golang·os
anzhxu20 小时前
Ubuntu上安装、使用Redis的详细教程
redis·ubuntu·bootstrap