《Redis系列第三篇、incr与decr使用|CSDN创作打卡》

incr与decr的效率要高于set操作,故而个人在开发过程中用作高并发的时候的限制器,效果非常nice的。

《Redis系列第三篇、incr与decr使用|CSDN创作打卡》_第1张图片

接下来看看具体用法与官方解释啊。

incr自增·将存储的key数字加一

《Redis系列第三篇、incr与decr使用|CSDN创作打卡》_第2张图片

使用方法

incr testNum
incr testNum
incr testNum
incr testNum
incr testNum
incr testNum
incr testNum
incr testNum
incr testNum
incr testNum
get testNum

 《Redis系列第三篇、incr与decr使用|CSDN创作打卡》_第3张图片

可以看到效果,在【Java】或者【.NET】中先增一,然后使用【if】判断一下,如果是【==1】就进入,如果【!=1】就return【操作的太快,请稍等一会】。我一般都这么干。 

decr自减·将存储的key数字减一

《Redis系列第三篇、incr与decr使用|CSDN创作打卡》_第4张图片

使用方法

decr testNum
decr testNum
decr testNum
decr testNum
decr testNum
decr testNum
decr testNum
decr testNum
decr testNum
decr testNum
get testNum

《Redis系列第三篇、incr与decr使用|CSDN创作打卡》_第5张图片

效果也是很明显的,效率与自增是一样的,故而看情况进行使用,如果是队列排序的话是可以用到的。

你可能感兴趣的:(redis基础,redis,缓存,数据库)