Redis
 sql >> Database >  >> NoSQL >> Redis

Redis INCRBY con limiti

Questa risposta potrebbe non essere quella che ti aspetti. Ma devo dire che lo scripting Lua è la soluzione cristallina.

-- range-incrby.lua key , increment
local key = KEYS[1]
local increment = ARGV[1]
local cnt = redis.call('get', key) or 0
cnt = cnt + increment
if (cnt >= 0 and cnt <= 100) then
    redis.call('set', key, cnt)
    return cnt
end

Inoltre, se l'intervallo è [0, 2^N - 1] , allora puoi usare BITFIELD comando con controllo di overflow per risolvere il problema.

BITFIELD key OVERFLOW FAIL INCRBY uN 0 increment

Tuttavia, non sembra il tuo caso.