-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtokenscript.lua
36 lines (30 loc) · 1.3 KB
/
tokenscript.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
local key = KEYS[1] -- Redis key,令牌桶的唯一标识
local rate = tonumber(ARGV[1]) -- 每秒产生的令牌数
local capacity = tonumber(ARGV[2]) -- 桶的最大容量
local now = tonumber(ARGV[3]) -- 当前时间戳
local requested = tonumber(ARGV[4]) -- 请求的令牌数量
local fill_time = capacity/rate -- 令牌桶填满所需的时间
local ttl = math.floor(fill_time*2) -- 令牌桶的过期时间
-- 获取当前的令牌数量和上次更新时间
local last_tokens = tonumber(redis.call("GET", key .. ":tokens"))
local last_refreshed = tonumber(redis.call("GET", key .. ":timestamp"))
-- 如果没有数据,则初始化令牌桶
if last_tokens == nil or last_refreshed == nil then
last_tokens = capacity
last_refreshed = now
end
-- 计算自上次刷新后的新令牌数量
local delta = math.max(0, now - last_refreshed)
local new_tokens = math.min(capacity, last_tokens + delta * rate)
-- 判断请求的令牌数量是否足够
local allowed = 0
if new_tokens >= requested then
-- 扣除请求的令牌并允许通过
new_tokens = new_tokens - requested
allowed = 1
end
-- 更新令牌桶的状态
redis.call("SETEX", key .. ":tokens", ttl, new_tokens)
redis.call("SETEX", key .. ":timestamp", ttl, now)
-- 返回是否允许通过
return allowed