基于Redis+Lua的分布式限流




local redis = require 'resty.redis'
local red = redis:new()
 
-- 设置超时时间
red:set_timeout(1000)
 
-- 连接Redis
local ok, err = red:connect(os.getenv('REDIS_HOST'), os.getenv('REDIS_PORT'))
if not ok then
    ngx.log(ngx.ERR, "连接Redis失败: ", err)
    return ngx.exit(500)
end
 
-- 用Lua脚本实现限流
local limit_key = ngx.var.binary_remote_addr .. ":" .. ngx.var.uri
local num = tonumber(ngx.var.arg_num) or 1
local rate = tonumber(ngx.var.arg_rate) or 10
local burst = tonumber(ngx.var.arg_burst) or 100
 
local script = [[
    local key = KEYS[1]
    local rate = tonumber(ARGV[1])
    local burst = tonumber(ARGV[2])
    local requested = tonumber(ARGV[3])
    local allowed = burst
 
    local current = redis.call('get', key)
    if current then
        current = tonumber(current)
        if current + requested > allowed then
            return current
        else
            redis.call('incrby', key, requested)
        end
    else
        redis.call('set', key, 0)
        redis.call('pexpire', key, 1000)
    end
 
    return requested
]]
 
local res, err = red:eval(script, 1, limit_key, rate, burst, num)
if not res then
    ngx.log(ngx.ERR, "Lua脚本执行失败: ", err)
    return ngx.exit(500)
end
 
if res > burst then
    ngx.say("超出限制")
    ngx.exit(403)
else
    ngx.say("通过限流")
end

这段代码使用了Lua脚本在Redis中实现了一个简单的限流机制。它首先连接到Redis,然后使用Lua脚本来控制访问频率。脚本会检查当前的请求数是否超过设定的限制,并相应地处理请求。这个例子展示了如何结合Redis和Lua脚本来实现分布式限流。

最后修改于:2024年08月16日 09:15

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日