当前位置:   article > 正文

SpringBoot中如何解决Redis的缓存穿透、缓存击穿、缓存雪崩?_usercache.opsforvalue().get()

usercache.opsforvalue().get()

今天给大家介绍一下如何在SpringBoot中解决Redis的缓存穿透、缓存击穿、缓存雪崩的问题。

缓存穿透

什么是缓存穿透

缓存穿透指的是一个缓存系统无法缓存某个查询的数据,从而导致这个查询每一次都要访问数据库。

常见的Redis缓存穿透场景包括:

  1. 查询一个不存在的数据:攻击者可能会发送一些无效的查询来触发缓存穿透。
  2. 查询一些非常热门的数据:如果一个数据被访问的非常频繁,那么可能会导致缓存系统无法处理这些请求,从而造成缓存穿透。
  3. 查询一些异常数据:这种情况通常发生在数据服务出现故障或异常时,从而造成缓存系统无法访问相关数据,从而导致缓存穿透。

如何解决

我们可以使用Guava在内存中维护一个布隆过滤器。具体步骤如下:

  1. 添加Guava和Redis依赖:
  1. <dependency>
  2. <groupId>com.google.guava</groupId>
  3. <artifactId>guava</artifactId>
  4. <version>29.0-jre</version>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-data-redis</artifactId>
  9. </dependency>
  10. 复制代码
  1. 创建一个BloomFilterUtil类,用于在缓存中维护Bloom Filter。
  1. public class BloomFilterUtil {
  2. // 布隆过滤器的预计容量
  3. private static final int expectedInsertions = 1000000;
  4. // 布隆过滤器误判率
  5. private static final double fpp = 0.001;
  6. private static BloomFilter<String> bloomFilter = BloomFilter.create(Funnels.stringFunnel(Charset.defaultCharset()), expectedInsertions, fpp);
  7. /**
  8. * 向Bloom Filter中添加元素
  9. */
  10. public static void add(String key){
  11. bloomFilter.put(key);
  12. }
  13. /**
  14. * 判断元素是否存在于Bloom Filter中
  15. */
  16. public static boolean mightContain(String key){
  17. return bloomFilter.mightContain(key);
  18. }
  19. }
  20. 复制代码
  1. 在Controller中查询数据时,先根据请求参数进行Bloom Filter的过滤
  1. @Autowired
  2. private RedisTemplate<String, Object> redisTemplate;
  3. @GetMapping("/user/{id}")
  4. public User getUserById(@PathVariable Long id){
  5. // 先从布隆过滤器中判断此id是否存在
  6. if(!BloomFilterUtil.mightContain(id.toString())){
  7. return null;
  8. }
  9. // 查询缓存数据
  10. String userKey = "user_"+id.toString();
  11. User user = (User) redisTemplate.opsForValue().get(userKey);
  12. if(user == null){
  13. // 查询数据库
  14. user = userRepository.findById(id).orElse(null);
  15. if(user != null){
  16. // 将查询到的数据加入缓存
  17. redisTemplate.opsForValue().set(userKey, user, 300, TimeUnit.SECONDS);
  18. }else{
  19. // 查询结果为空,将请求记录下来,并在布隆过滤器中添加
  20. BloomFilterUtil.add(id.toString());
  21. }
  22. }
  23. return user;
  24. }
  25. 复制代码

缓存击穿

什么是缓存击穿

缓存击穿指的是在一些高并发访问下,一个热点数据从缓存中不存在,每次请求都要直接查询数据库,从而导致数据库压力过大,并且系统性能下降的现象。

缓存击穿的原因通常有以下几种:

  1. 缓存中不存在所需的热点数据:当系统中某个热点数据需要被频繁访问时,如果这个热点数据最开始没有被缓存,那么就会导致系统每次请求都需要直接查询数据库,造成数据库负担。
  2. 缓存的热点数据过期:当一个热点数据过期并需要重新缓存时,如果此时有大量请求,那么就会导致所有请求都要直接查询数据库。

如何解决

主要思路 : 在遇到缓存击穿问题时,我们可以在查询数据库之前,先判断一下缓存中是否已有数据,如果没有数据则使用Redis的单线程特性,先查询数据库然后将数据写入缓存中。

  1. 添加Redis依赖
  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-data-redis</artifactId>
  4. </dependency>
  5. 复制代码
  1. 在Controller中查询数据时,先从缓存中查询数据,如果缓存中无数据则进行锁操作
  1. @Autowired
  2. private RedisTemplate<String, Object> redisTemplate;
  3. @GetMapping("/user/{id}")
  4. public User getUserById(@PathVariable Long id){
  5. // 先从缓存中获取值
  6. String userKey = "user_"+id.toString();
  7. User user = (User) redisTemplate.opsForValue().get(userKey);
  8. if(user == null){
  9. // 查询数据库之前加锁
  10. String lockKey = "lock_user_"+id.toString();
  11. String lockValue = UUID.randomUUID().toString();
  12. try{
  13. Boolean lockResult = redisTemplate.opsForValue().setIfAbsent(lockKey, lockValue, 60, TimeUnit.SECONDS);
  14. if(lockResult != null && lockResult){
  15. // 查询数据库
  16. user = userRepository.findById(id).orElse(null);
  17. if(user != null){
  18. // 将查询到的数据加入缓存
  19. redisTemplate.opsForValue().set(userKey, user, 300, TimeUnit.SECONDS);
  20. }
  21. }
  22. }finally{
  23. // 释放锁
  24. if(lockValue.equals(redisTemplate.opsForValue().get(lockKey))){
  25. redisTemplate.delete(lockKey);
  26. }
  27. }
  28. }
  29. return user;
  30. }
  31. 复制代码

缓存雪崩

什么是缓存雪崩

指缓存中大量数据的失效时间集中在某一个时间段,导致在这个时间段内缓存失效并额外请求数据库查询数据的请求大量增加,从而对数据库造成极大的压力和负荷。

常见的Redis缓存雪崩场景包括:

  1. 缓存服务器宕机:当缓存服务器宕机或重启时,大量的访问请求将直接命中数据库,并在同一时间段内导致大量的数据库查询请求,从而将数据库压力大幅提高。
  2. 缓存数据同时失效:在某个特定时间点,缓存中大量数据的失效时间集中在一起,这些数据会在同一时间段失效,并且这些数据被高频访问,将导致大量的访问请求去查询数据库。
  3. 缓存中数据过期时间设计不合理:当缓存中的数据有效时间过短,且数据集中在同一时期失效时,就容易导致大量的请求直接查询数据库,加剧数据库压力。
  4. 波动式的访问过程:当数据的访问存在波动式特征时,例如输出某些活动物品或促销商品时,将会带来高频的查询请求访问,导致缓存大量失效并产生缓存雪崩。

如何解决

在遇到缓存雪崩时,我们可以使用两种方法:一种是将缓存过期时间分散开,即为不同的数据设置不同的过期时间;另一种是使用Redis的多级缓存架构,通过增加一层代理层来解决。具体步骤如下:

  1. 添加相关依赖
  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-data-redis</artifactId>
  4. </dependency>
  5. <dependency>
  6. <groupId>net.sf.ehcache</groupId>
  7. <artifactId>ehcache</artifactId>
  8. <version>2.10.6</version>
  9. </dependency>
  10. 复制代码
  1. 在application.properties中配置Ehcache缓存
  1. spring.cache.type=ehcache
  2. 复制代码
  1. 创建一个CacheConfig类,用于配置Ehcache:
  1. @Configuration
  2. @EnableCaching
  3. public class CacheConfig {
  4. @Bean
  5. public EhCacheCacheManager ehCacheCacheManager(CacheManager cm){
  6. return new EhCacheCacheManager(cm);
  7. }
  8. @Bean
  9. public CacheManager ehCacheManager(){
  10. EhCacheManagerFactoryBean cmfb = new EhCacheManagerFactoryBean();
  11. cmfb.setConfigLocation(new ClassPathResource("ehcache.xml"));
  12. cmfb.setShared(true);
  13. return cmfb.getObject();
  14. }
  15. }
  16. 复制代码
  1. 在ehcache.xml中添加缓存配置
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
  4. updateCheck="true"
  5. monitoring="autodetect"
  6. dynamicConfig="true">
  7. <cache name="userCache" maxEntriesLocalHeap="10000" timeToLiveSeconds="60" timeToIdleSeconds="30"/>
  8. </ehcache>
  9. 复制代码
  1. 在Controller中查询数据时,先从Ehcache缓存中获取,如果缓存中无数据则再从Redis缓存中获取数据
  1. @Autowired
  2. private RedisTemplate<String, Object> redisTemplate;
  3. @Autowired
  4. private CacheManager ehCacheManager;
  5. @GetMapping("/user/{id}")
  6. @Cacheable(value = "userCache", key = "#id")
  7. public User getUserById(@PathVariable Long id){
  8. // 先从Ehcache缓存中获取
  9. String userKey = "user_"+id.toString();
  10. User user = (User) ehCacheManager.getCache("userCache").get(userKey).get();
  11. if(user == null){
  12. // 再从Redis缓存中获取
  13. user = (User) redisTemplate.opsForValue().get(userKey);
  14. if(user != null){
  15. ehCacheManager.getCache("userCache").put(userKey, user);
  16. }
  17. }
  18. return user;
  19. }
  20. 复制代码

以上就是使用SpringBoot时如何解决Redis的缓存穿透、缓存击穿、缓存雪崩的常用方法。

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

闽ICP备14008679号