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

lua.SETNX_EXPIRE.lua Maven / Gradle / Ivy

There is a newer version: 1.0.14.17
Show newest version
if (redis.call('setnx', KEYS[1], ARGV[1]) == 1)
then
    redis.call('expire', KEYS[1], ARGV[2])
    return true
else
    return false
end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy