分布式缓存(SpringCache)

Posted csdn_20210509

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了分布式缓存(SpringCache)相关的知识,希望对你有一定的参考价值。

美图

简介

  • Spring从3.1开始定义了org.springframework.cache.Cache和org.springframework.cache.CacheManager接口来统一不同的缓存技术;并支持使用JCache(JSR-107)注解简化开发;
  • Cache接口为缓存的组件规范定义,包含缓存的各种操作集合;Cache接口下Spring提供了各种XxxCache的实现;如RedisCache,EhCacheCache,ConcurrentMapCache等;
  • 每次调用需要缓存功能的方法是,Spring会检查指定参数的指定的目标方法是否已经被调用过;如果有就直接从缓存中获取调用后的结果,如果没有就调用方法并缓存结果后返回给用户。下次调用直接从缓存中获取。
  • 使用Spring缓存抽象时我们需要关注以下两点:
    1.确定方法需要被缓存以及他们的缓存策略
    2.从缓存中读取缓存存储的数据

基础概念

引入依赖

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

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

配置缓存

指定缓存使用redis

spring:
  cache:
    type: redis
    redis:
      time-to-live: 1h
      cache-null-values: true

常见注解

@Cacheable: 将数据保存到缓存
@CacheEvict: 将数据从缓存中删除
@CachePut: 更新缓存数据
@Caching: 组合以上操作
@CacheConfig: 在类级别共享缓存的相同配置
@EnableCaching: 开启缓存

使用

@Cacheable(value = "product", key = "#root.methodName")

将当前product区所有key删除

@CacheEvict(value = "product", allEntries = true)

以上是关于分布式缓存(SpringCache)的主要内容,如果未能解决你的问题,请参考以下文章

分布式缓存(SpringCache)

分布式缓存(SpringCache)

SpringBoot 集成缓存性能之王 Caffeine

SpringCache #yyds干货盘点#

springcache清除过期缓存

SpringCache通用缓存学习