All Downloads are FREE. Search and download functionalities are using the official Maven repository.

t-cat-spring-boot-starter.1.0.3-sb3.source-code.limit_get.lua Maven / Gradle / Ivy

There is a newer version: 1.0.5-sb3
Show newest version
local key = KEYS[1]
local limit = tonumber(ARGV[1])

-- 检查是否触发流控
local currentValue = tonumber(redis.pcall('get', key) or "0")
if currentValue + 1 > limit then
    return 0
else
    return 1
end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy