mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-22 14:18:18 +08:00
7 lines
143 B
Lua
7 lines
143 B
Lua
|
|
for _, offset in ipairs(ARGV) do
|
||
|
|
if tonumber(redis.call("getbit", KEYS[1], offset)) == 0 then
|
||
|
|
return false
|
||
|
|
end
|
||
|
|
end
|
||
|
|
return true
|