.cosid-spring-redis.1.19.0.source-code.redis_id_generate.lua Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cosid-spring-redis Show documentation
Show all versions of cosid-spring-redis Show documentation
Universal, flexible, high-performance distributed ID generator.
local adderKey = KEYS[1];
local offset = tonumber(ARGV[1]);
local step = tonumber(ARGV[2]);
redis.call('setnx', adderKey, offset);
return redis.call("incrby", adderKey, step);
© 2015 - 2025 Weber Informatics LLC | Privacy Policy