All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lua.redis_expire.lua Maven / Gradle / Ivy

There is a newer version: 0.1.15
Show newest version
--redis_expire.lua
redis.call("expire", KEYS[1], ARGV[1]);

if (not KEYS[2])
then
    return "OK";
end
local redisKey = redis.call("hvals", KEYS[2]);
for index = 1, #redisKey, 1 do
    redis.call("expire", redisKey[index], ARGV[1]);
end
redis.call("expire", KEYS[2], ARGV[1]);
return "OK";




© 2015 - 2024 Weber Informatics LLC | Privacy Policy