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

script.getLockt.lua Maven / Gradle / Ivy

The newest version!
if redis.call('get', KEYS[1]) == ARGV[1] then
    redis.call('expire', KEYS[1], ARGV[2]);
    return ARGV[1];
else
    redis.call('set', KEYS[1], ARGV[1], 'EX', ARGV[2], 'NX');
    return redis.call('get', KEYS[1]);
end





© 2015 - 2024 Weber Informatics LLC | Privacy Policy