Spring-IO-Caching 二

本文介绍了如何在SpringBoot应用中配置Redis作为缓存系统,包括`application.properties`中的相关设置,并展示了`@Cacheable`注解的使用示例。通过实例说明了如何利用Redis存储和重用缓存数据,以及一个小问题的探讨。
摘要由CSDN通过智能技术生成

在文章一种完成了缓存项目的初始化、以及默认缓存SimpleCacheConfiguration。本文继续研究使用redis实现缓存。

新增application.properties,内容如下

# redis 相关配置
spring.redis.host=localhost
spring.redis.port=16379
spring.redis.database=0
# spring.redis.username=
# spring.redis.password=

# cache相关配置
spring.cache.cacheNames = cacheName1,cacheName2
spring.cache.redis.timeToLive = 1m
spring.cache.redis.keyPrefix = keyPrefix
spring.cache.redis.cacheNullValues = true
# 默认值就是 true
spring.cache.redis.useKeyPrefix = true

写一个 demo

    @GetMapping("cacheable")
    @Cacheable(cacheNames = "cache1", key = "'key'")
    public String cache() {
        System.out.println(new Date());
        return "hello cache";
    }

看一下结果

  1. 访问 http://localhost:8080/cache/cacheable
  2. 通过redis客户端查看,发现cache方法的返回值被存到了redis中,有效时间TTL为54秒(我们再配置中设置了timeToLive = 1m 1分钟)
    在这里插入图片描述
  3. 再次访问 http://localhost:8080/cache/cacheable 发现不执行方法体了,而是从redis进行读取了。

总结

至此已经实现了使用redis来存储spring-cache,代码中不用再判断是否有redis中是否有缓存,没有的话取数据库再存储reids。

图片中圈出的红色,有什么问题呢?我们下文在做解释。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值