当前位置:   article > 正文

图解Redis缓存穿透、击穿、雪崩(必须知道)_图解缓存穿透

图解缓存穿透

目录

一、缓存是什么?

缓存就是数据交换的缓存区,是存储数据的地方,一般读写性能较高。
在这里插入图片描述

二、缓存的作用和成本

1、缓存的作用:

  1. 降低后端负载
  2. 提高读写效率,降低响应时间

2、缓存的成本:

  1. 数据一致性成本
  2. 代码维护成本
  3. 运维成本

三、缓存作用模型

在这里插入图片描述

1、根据id查询数据缓存流程

在这里插入图片描述

四、缓存更新策略

1、内存淘汰

Redis的内存淘汰机制,当内存不足时自动淘汰部分数据,下次查询时更新缓存。

2、超时剔除

当缓存数据设置TTL时间,到期后自动删除缓存,下次查询时更新缓存。

3、主动更新

编写业务逻辑,在修改数据库的同时,更新缓存。

五、缓存穿透

缓存穿透是指客户端请求的数据在Redis和数据库中都不存在,这样就无法进行缓存,这些请求都会打到数据库。

解决方法:

1、缓存空对象

对不存在的数据也在Redis中建立缓存,值为空,并设置一个较短的TTL时间。

  • 优点:实现简单,维护方便;
  • 缺点:额外的内存消耗,可能造成短期的数据不一致;

2、布隆过滤器

利用布隆过滤算法,在请求进入Redis之前,先判断是否存在,如果不存在则直接拒绝访问。

  • 优点:内存占用小
  • 缺点:① 实现复杂;② 存在误判的可能;

六、缓存雪崩

缓存雪崩是指同一时间段大量的缓存key同时失效或者Redis服务宕机,导致大量请求打到数据库,带来巨大压力。

解决方式:

  1. 给不同的key的TTL添加随机值;
  2. 利用Redis集群提高服务的可用性;
  3. 给缓存添加降级限流策略;
  4. 给业务添加多级缓存;

七、缓存击穿

缓存击穿也叫热点key问题,就是一个被高并发访问并且缓存重建业务较复杂的key失效了,无数的请求访问会在瞬间打到数据库,带来巨大压力。

1、通过互斥锁解决缓存击穿

给缓存重建过程加锁,确保重建过程只有一个线程执行,其它线程等待。

互斥锁的最大问题是,线程等待问题,性能较差。
在这里插入图片描述

2、根据id查询商品信息,基于互斥锁解决缓存击穿问题

在这里插入图片描述

3、通过逻辑过期解决缓存击穿

逻辑过期的优点是性能好,缺点是不保证一致性,有额外的内存消耗,实现复杂。
在这里插入图片描述

在这里插入图片描述

八、Redis工具类

  1. // 解决缓存穿透
  2. Goods goods = cacheClient.queryWithPassThrough(CACHE_GOODS_KEY, id, Goods.class, this::getById, CACHE_GOODS_TTL, TimeUnit.MINUTES);
  3. // 互斥锁解决缓存击穿
  4. Goods goods = cacheClient.queryWithMutex(CACHE_GOODS_KEY, id, Goods.class, this::getById, CACHE_GOODS_TTL, TimeUnit.MINUTES);
  5. // 逻辑过期解决缓存击穿
  6. Goods goods = cacheClient.queryWithLogicalExpire(CACHE_GOODS_KEY, id, Goods.class, this::getById, 20L, TimeUnit.SECONDS);
  7. package com.guor.utils;
  8. import cn.hutool.core.util.BooleanUtil;
  9. import cn.hutool.core.util.StrUtil;
  10. import cn.hutool.json.JSONObject;
  11. import cn.hutool.json.JSONUtil;
  12. import lombok.extern.slf4j.Slf4j;
  13. import org.springframework.data.redis.core.StringRedisTemplate;
  14. import org.springframework.stereotype.Component;
  15. import java.time.LocalDateTime;
  16. import java.util.concurrent.ExecutorService;
  17. import java.util.concurrent.Executors;
  18. import java.util.concurrent.TimeUnit;
  19. import java.util.function.Function;
  20. @Slf4j
  21. @Component
  22. public class CacheClient {
  23. private final StringRedisTemplate stringRedisTemplate;
  24. private static final ExecutorService CACHE_REBUILD_EXECUTOR = Executors.newFixedThreadPool(10);
  25. public CacheClient(StringRedisTemplate stringRedisTemplate) {
  26. this.stringRedisTemplate = stringRedisTemplate;
  27. }
  28. public void set(String key, Object value, Long time, TimeUnit unit) {
  29. stringRedisTemplate.opsForValue().set(key, JSONUtil.toJsonStr(value), time, unit);
  30. }
  31. public void setWithLogicalExpire(String key, Object value, Long time, TimeUnit unit) {
  32. // 设置逻辑过期
  33. RedisData redisData = new RedisData();
  34. redisData.setData(value);
  35. redisData.setExpireTime(LocalDateTime.now().plusSeconds(unit.toSeconds(time)));
  36. // 写入Redis
  37. stringRedisTemplate.opsForValue().set(key, JSONUtil.toJsonStr(redisData));
  38. }
  39. public <R,ID> R queryWithPassThrough(String keyPrefix, ID id, Class<R> type, Function<ID, R> dbFallback, Long time, TimeUnit unit){
  40. String key = keyPrefix + id;
  41. // 1.从redis查询商铺缓存
  42. String json = stringRedisTemplate.opsForValue().get(key);
  43. // 2.判断是否存在
  44. if (StrUtil.isNotBlank(json)) {
  45. // 3.存在,直接返回
  46. return JSONUtil.toBean(json, type);
  47. }
  48. // 判断命中的是否是空值
  49. if (json != null) {
  50. // 返回一个错误信息
  51. return null;
  52. }
  53. // 4.不存在,根据id查询数据库
  54. R r = dbFallback.apply(id);
  55. // 5.不存在,返回错误
  56. if (r == null) {
  57. // 将空值写入redis
  58. stringRedisTemplate.opsForValue().set(key, "", RedisConfig.CACHE_NULL_TTL, TimeUnit.MINUTES);
  59. // 返回错误信息
  60. return null;
  61. }
  62. // 6.存在,写入redis
  63. this.set(key, r, time, unit);
  64. return r;
  65. }
  66. public <R, ID> R queryWithLogicalExpire(String keyPrefix, ID id, Class<R> type, Function<ID, R> dbFallback, Long time, TimeUnit unit) {
  67. String key = keyPrefix + id;
  68. // 1.从redis查询商铺缓存
  69. String json = stringRedisTemplate.opsForValue().get(key);
  70. // 2.判断是否存在
  71. if (StrUtil.isBlank(json)) {
  72. // 3.存在,直接返回
  73. return null;
  74. }
  75. // 4.命中,需要先把json反序列化为对象
  76. RedisData redisData = JSONUtil.toBean(json, RedisData.class);
  77. R r = JSONUtil.toBean((JSONObject) redisData.getData(), type);
  78. LocalDateTime expireTime = redisData.getExpireTime();
  79. // 5.判断是否过期
  80. if(expireTime.isAfter(LocalDateTime.now())) {
  81. // 5.1.未过期,直接返回店铺信息
  82. return r;
  83. }
  84. // 5.2.已过期,需要缓存重建
  85. // 6.缓存重建
  86. // 6.1.获取互斥锁
  87. String lockKey = RedisConfig.LOCK_GOODS_KEY + id;
  88. boolean isLock = tryLock(lockKey);
  89. // 6.2.判断是否获取锁成功
  90. if (isLock){
  91. // 6.3.成功,开启独立线程,实现缓存重建
  92. CACHE_REBUILD_EXECUTOR.submit(() -> {
  93. try {
  94. // 查询数据库
  95. R newR = dbFallback.apply(id);
  96. // 重建缓存
  97. this.setWithLogicalExpire(key, newR, time, unit);
  98. } catch (Exception e) {
  99. throw new RuntimeException(e);
  100. }finally {
  101. // 释放锁
  102. unlock(lockKey);
  103. }
  104. });
  105. }
  106. // 6.4.返回过期的商铺信息
  107. return r;
  108. }
  109. public <R, ID> R queryWithMutex(String keyPrefix, ID id, Class<R> type, Function<ID, R> dbFallback, Long time, TimeUnit unit) {
  110. String key = keyPrefix + id;
  111. // 1.从redis查询商铺缓存
  112. String json = stringRedisTemplate.opsForValue().get(key);
  113. // 2.判断是否存在
  114. if (StrUtil.isNotBlank(json)) {
  115. // 3.存在,直接返回
  116. return JSONUtil.toBean(json, type);
  117. }
  118. // 判断命中的是否是空值
  119. if (json != null) {
  120. // 返回一个错误信息
  121. return null;
  122. }
  123. // 4.实现缓存重建
  124. // 4.1.获取互斥锁
  125. String lockKey = RedisConfig.LOCK_GOODS_KEY + id;
  126. R r = null;
  127. try {
  128. boolean isLock = tryLock(lockKey);
  129. // 4.2.判断是否获取成功
  130. if (!isLock) {
  131. // 4.3.获取锁失败,休眠并重试
  132. Thread.sleep(50);
  133. return queryWithMutex(keyPrefix, id, type, dbFallback, time, unit);
  134. }
  135. // 4.4.获取锁成功,根据id查询数据库
  136. r = dbFallback.apply(id);
  137. // 5.不存在,返回错误
  138. if (r == null) {
  139. // 将空值写入redis
  140. stringRedisTemplate.opsForValue().set(key, "", RedisConfig.CACHE_NULL_TTL, TimeUnit.MINUTES);
  141. // 返回错误信息
  142. return null;
  143. }
  144. // 6.存在,写入redis
  145. this.set(key, r, time, unit);
  146. } catch (InterruptedException e) {
  147. throw new RuntimeException(e);
  148. }finally {
  149. // 7.释放锁
  150. unlock(lockKey);
  151. }
  152. // 8.返回
  153. return r;
  154. }
  155. private boolean tryLock(String key) {
  156. Boolean flag = stringRedisTemplate.opsForValue().setIfAbsent(key, "1", 10, TimeUnit.SECONDS);
  157. return BooleanUtil.isTrue(flag);
  158. }
  159. private void unlock(String key) {
  160. stringRedisTemplate.delete(key);
  161. }
  162. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/514562
推荐阅读
相关标签
  

闽ICP备14008679号