go-zero/core/bloom/testscript.lua
2024-04-17 23:37:35 +08:00

6 lines
142 B
Lua

for _, offset in ipairs(ARGV) do
if tonumber(redis.call("getbit", KEYS[1], offset)) == 0 then
return false
end
end
return true