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

.cosid-spring-redis.1.19.0.source-code.redis_id_generate.lua Maven / Gradle / Ivy

There is a newer version: 2.10.1
Show newest version
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