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

redis实现网关限流

1、添加maven依赖,使用springboot2.x版本

org.springframework.boot

spring-boot-starter-data-redis

org.apache.commons

commons-pool2

2、添加redis配置进application.yml,springboot2.x版本的redis是使用lettuce配置的

spring:

redis:

database: 0

host: localhost

port: 6379

lettuce:                  # 这里标明使用lettuce配置

pool:

max-active: 8         # 连接池最大连接数

max-wait: -1ms        # 连接池最大阻塞等待时间(使用负值表示没有限制

max-idle: 5           # 连接池中的最大空闲连接

min-idle: 0           # 连接池中的最小空闲连接

timeout: 10000ms          # 连接超时时间

3、使用redis作限流器有两种写法

方法一:

Long size = redisTemplate.opsForList().size("apiRequest");

if (size 

redisTemplate.opsForList().leftPush("apiRequest", System.currentTimeMillis());

} else {

Long start = (Long) redisTemplate.opsForList().index("apiRequest", -1);

if ((System.currentTimeMillis() - start) 

throw new RuntimeException("超过限流阈值");

} else {

redisTemplate.opsForList().leftPush("apiRequest", System.currentTimeMillis());

redisTemplate.opsForList().trim("apiRequest", -1, -1);

}

}

核心思路:用一个list来存放一串值,每次请求都把当前时间放进,如果列表长度为1000,那么调用就是1000次。如果第1000次调用时的当前时间和最初的时间差小于60s,那么就是1分钟里调用超1000次。否则,就清空列表之前的值

方法二:

Integer count = (Integer) redisTemplate.opsForValue().get("apiKey");

Integer integer = Optional.ofNullable(count).orElse(0);

if (integer > 1000) {

throw new RuntimeException("超过限流阈值");

}

if (redisTemplate.getExpire("apiKey", TimeUnit.SECONDS).longValue() 

redisTemplate.multi();

redisTemplate.opsForValue().increment("apiKey", 1);

redisTemplate.expire("apiKey", 60, TimeUnit.SECONDS);

redisTemplate.exec();

} else {

redisTemplate.opsForValue().increment("apiKey", 1);

}

核心思路:设置key,过期时间为1分钟,其值是api这分钟内调用次数

对比:方法一耗内存,限流准确。方法二结果有部分误差,只限制key存在的这一分钟内调用次数低于1000次,不代表任意时间段的一分钟调用次数低于1000

太赞了,SpringBoot+Vue前后端分离完整入门教程!

分享一套SpringBoot开发博客系统源码,以及完整开发文档!速度保存!

Java进阶架构师之必须掌握的10款开源工具!

Git 从入门到精通,这篇包教包会!

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

扫码

添加站长 进交流群

领取专属 10元无门槛券

私享最新 技术干货

扫码加入开发者社群
领券