go-zero/core/bloom/testscript.lua
2024-04-17 15:20:10 +00:00

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