首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

Redis穿透问题怎么解决?

//缓存穿透:在Controller中查询数据时,先根据请求参数进行Bloom Filter的过滤

@RestController

public class RC2 {

@Autowired

private PersonService personService;

@Autowired

private RedisTemplate redisTemplate;

@GetMapping("/person2/{id}")

public Person getUserById(@PathVariable String id){

//先从布隆过滤器中判断此id是否存在

if(BloomFilterUtil.mightContain(id)){

return null;

}

//查询缓存数据

Person person = (Person) redisTemplate.opsForValue().get(id);

if(person == null){

person = personService.getById(id);

if(person != null){

//将查询到的数据加入缓存

redisTemplate.opsForValue().set(id, person, 300, TimeUnit.SECONDS);

}else{

//查询结果为空,将请求记录下来,并在布隆过滤器中添加

BloomFilterUtil.add(id);

}

}

return person;

}

}

  • 发表于:
  • 原文链接https://page.om.qq.com/page/OBC4EbySrzX3e8Rv9-CMPk-g0
  • 腾讯「腾讯云开发者社区」是腾讯内容开放平台帐号(企鹅号)传播渠道之一,根据《腾讯内容开放平台服务协议》转载发布内容。
  • 如有侵权,请联系 cloudcommunity@tencent.com 删除。

扫码

添加站长 进交流群

领取专属 10元无门槛券

私享最新 技术干货

扫码加入开发者社群
领券