incrby redis 最大值_Redis INCRBY有限制

I'd like to know if there is a way to perform this in redis with a single roundtrip from my app:

For a given key K, its possible value V is any of the integers inside the range [A, B]. Basically, it has an upper and lower boundary.

When an INCRBY or DECRBY command is issued (eg. INCRBY key 10) it will be executed only if the resulting value is not out of bounds.

I need this operation to be atomic, and I wanted to know if there was a way to avoid Lua scripting for this.

Thank you.

解决方案

This answer might not be what you expect. But I have to say that Lua scripting is the crystal clear solution.

-- 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

Also, if the range is [0, 2^N - 1], then you can use BITFIELD command with overflow control to solve the problem.

BITFIELD key OVERFLOW FAIL INCRBY uN 0 increment

However, that seems not your case.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值