mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 12:27:59 +00:00
10 lines
198 B
Lua
10 lines
198 B
Lua
|
local n = #KEYS
|
||
|
for i = 1, n do
|
||
|
local result = redis.call("GET", KEYS[i])
|
||
|
if result == false then
|
||
|
return nil
|
||
|
end
|
||
|
local object_id = tostring(result)
|
||
|
remove(object_id)
|
||
|
end
|