编辑
2023-05-30
实用工具
00
请注意,本文编写于 674 天前,最后修改于 674 天前,其中某些信息可能已经过时。

目录

简介
引入依赖
配置
使用案例

简介

🍰 🌯 Caffeine 是基于 JAVA 8 的高性能缓存库。参考 Google Guava 的API对缓存框架重写,基于LRU算法实现,支持多种缓存过期策略。 Spring Boot 1.x版本中的默认本地缓存是Guava Cache。在 Spring5 (spring boot 2.x) 后,Spring 官方放弃了 Guava Cache 作为缓存机制,而是使用性能更优秀的 Caffeine 作为默认缓存组件

引入依赖

xml
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-cache</artifactId> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <version>2.7.0</version> </dependency>

配置

在SpingBoot启动类标上@EnableCaching注解

application.yml 配置参数

yml
spring: # 配置缓存,初始缓存容量为10,最大容量为200,过期时间(这里配置写入后过期时间为3秒) cache: type: caffeine caffeine: spec: initialCapacity=10,maximumSize=200,expireAfterWrite=3s

或者使用配置类

java
@Configuration public class CacheConfig { @Bean public CacheManager cacheManager() { CaffeineCacheManager cacheManager = new CaffeineCacheManager(); cacheManager.setCaffeine(Caffeine.newBuilder() // 设置最后一次写入或访问后经过固定时间过期 .expireAfterAccess(600, TimeUnit.SECONDS) // 初始的缓存空间大小 .initialCapacity(100) // 缓存的最大条数 .maximumSize(500)); return cacheManager; }

使用案例

key的设置

java
// key 是指传入时的参数 @Cacheable(value="users", key="#id") public Integer find(Integer id) { return id; } // 表示第一个参数 @Cacheable(value="users", key="#p0") public Long find(Long id) { return id; } // 表示User中的id值 @Cacheable(value="users", key="#user.id") public User find(User user) { return user; } // 表示第一个参数里的id属性值 @Cacheable(value="users", key="#p0.id") public User find(User user) { return user; }

主要的三种注解更新-@CachePut,删除-@CacheEvict,添加-@Cacheable,组合@Caching 这是一个组合注解集成了上面三个注解,有三个属性:cacheable、put和evict,分别用于来指定@Cacheable、@CachePut和@CacheEvict

java
@Override @CachePut(value = "user", key = "#userDTO.id") public UserDTO save(UserDTO userDTO) { userRepository.save(userDTO); return userDTO; } @Override @CacheEvict(value = "user", key = "#id")//2 public void remove(Long id) { logger.info("删除了id、key为" + id + "的数据缓存"); } @Override @Cacheable(value = "user",key = "#id") public UserDTO getUserById(Long id) { return userRepository.findOne(id); } // 根据条件判断是否缓存 @Cacheable(value="users", key="#user.id", condition="#user.id%2==0") public User find(User user) { return user; }

本文作者:Weee

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!