Files
zitadel/apps/api/internal/cache/connector/redis/invalidate.lua
2025-08-05 15:20:32 -07:00

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