为什么多级缓存

缓存的引入是现在大部分系统所必须考虑的

  • redis 作为常用中间件,虽然我们一般业务系统(毕竟业务量有限)不会遇到如下图 在随着 data-size 的增大和数据结构的复杂的造成性能下降,但网络 IO 消耗会成为整个调用链路中不可忽视的部分。尤其在 微服务架构中,一次调用往往会涉及多次调用 例如pig oauth2.0 的 client 认证

pig 整合多级缓存提高性能 - 图1

  • Caffeine 来自未来的本地内存缓存,性能比如常见的内存缓存实现性能高出不少详细对比

pig 整合多级缓存提高性能 - 图2

综合所述:我们需要构建 L1 Caffeine JVM 级别内存 , L2 Redis 内存。

设计难点

目前大部分应用缓存都是基于 Spring Cache 实现,基于注释(annotation)的缓存(cache)技术,存在的问题如下:

  • Spring Cache 仅支持 单一的缓存来源,即:只能选择 Redis 实现或者 Caffeine 实现,并不能同时使用。
  • 数据一致性:各层缓存之间的数据一致性问题,如应用层缓存和分布式缓存之前的数据一致性问题。
  • 缓存过期:Spring Cache 不支持主动的过期策略

业务流程

pig 整合多级缓存提高性能 - 图3

如何使用

  • 引入依赖
  1. <dependency>
  2. <groupId>com.pig4cloud.plugin</groupId>
  3. <artifactId>multilevel-cache-spring-boot-starter</artifactId>
  4. <version>1.0.1</version>
  5. </dependency>
  • 开启缓存支持
  1. @EnableCaching
  2. public class App {
  3. public static void main(String[] args) {
  4. SpringApplication.run(App.class, args);
  5. }
  6. }
  • 目标接口声明 Spring Cache 注解
  1. @Cacheable(value = "get",key = "#key")
  2. @GetMapping("/get")
  3. public String get(String key){
  4. return "success";
  5. }

性能比较

为保证性能 redis 在 127.0.0.1 环路安装

  • OS: macOS Mojave
  • CPU: 2.3 GHz Intel Core i5
  • RAM: 8 GB 2133 MHz LPDDR3
  • JVM: corretto_11.jdk | Benchmark | Mode | Cnt | Score | Units | | —- | —- | —- | —- | —- | | 多级实现 | thrpt | 2 | 2716.074 | ops/s | | 默认 redis | thrpt | 2 | 1373.476 | ops/s |

代码原理

  • 自定义 CacheManager 多级缓存实现
  1. public class RedisCaffeineCacheManager implements CacheManager {
  2. @Override
  3. public Cache getCache(String name) {
  4. Cache cache = cacheMap.get(name);
  5. if (cache != null) {
  6. return cache;
  7. }
  8. cache = new RedisCaffeineCache(name, stringKeyRedisTemplate, caffeineCache(), cacheConfigProperties);
  9. Cache oldCache = cacheMap.putIfAbsent(name, cache);
  10. log.debug("create cache instance, the cache name is : {}", name);
  11. return oldCache == null ? cache : oldCache;
  12. }
  13. }
  • 多级读取、过期策略实现
  1. public class RedisCaffeineCache extends AbstractValueAdaptingCache {
  2. protected Object lookup(Object key) {
  3. Object cacheKey = getKey(key);
  4. // 1. 先调用 caffeine 查询是否存在指定的值
  5. Object value = caffeineCache.getIfPresent(key);
  6. if (value != null) {
  7. log.debug("get cache from caffeine, the key is : {}", cacheKey);
  8. return value;
  9. }
  10. // 2. 调用 redis 查询在指定的值
  11. value = stringKeyRedisTemplate.opsForValue().get(cacheKey);
  12. if (value != null) {
  13. log.debug("get cache from redis and put in caffeine, the key is : {}", cacheKey);
  14. caffeineCache.put(key, value);
  15. }
  16. return value;
  17. }
  18. }
  • 过期策略,所有更新操作都基于 redis pub/sub 消息机制更新
  1. public class RedisCaffeineCache extends AbstractValueAdaptingCache {
  2. @Override
  3. public void put(Object key, Object value) {
  4. push(new CacheMessage(this.name, key));
  5. }
  6. @Override
  7. public ValueWrapper putIfAbsent(Object key, Object value) {
  8. push(new CacheMessage(this.name, key));
  9. }
  10. @Override
  11. public void evict(Object key) {
  12. push(new CacheMessage(this.name, key));
  13. }
  14. @Override
  15. public void clear() {
  16. push(new CacheMessage(this.name, null));
  17. }
  18. private void push(CacheMessage message) {
  19. stringKeyRedisTemplate.convertAndSend(topic, message);
  20. }
  21. }
  • MessageListener 删除指定 Caffeine 的指定值
  1. public class CacheMessageListener implements MessageListener {
  2. private final RedisTemplate<Object, Object> redisTemplate;
  3. private final RedisCaffeineCacheManager redisCaffeineCacheManager;
  4. @Override
  5. public void onMessage(Message message, byte[] pattern) {
  6. CacheMessage cacheMessage = (CacheMessage) redisTemplate.getValueSerializer().deserialize(message.getBody());
  7. cacheMessage.getCacheName(), cacheMessage.getKey());
  8. redisCaffeineCacheManager.clearLocal(cacheMessage.getCacheName(), cacheMessage.getKey());
  9. }
  10. }

源码地址

https://github.com/pig-mesh/multilevel-cache-spring-boot-starter

❤ 问题咨询

手势点击蓝字求关注简约风动态引导关注__2022-09-07+23_18_38.gif