redis的字符串可以对存储的数据进行自增或者自减操作。
incr 将键处存储的数字加1。如果不存在,则在执行操作之前将其设置为0。
语法格式为 incr key
127.0.0.1:6379> incr numer0 (integer) 1
127.0.0.1:6379> set num1 100 OK 127.0.0.1:6379> incr num1 (integer) 101继续阅读“redis数据类型之string incr decr讲解”
Just Coder
redis的字符串可以对存储的数据进行自增或者自减操作。
incr 将键处存储的数字加1。如果不存在,则在执行操作之前将其设置为0。
语法格式为 incr key
127.0.0.1:6379> incr numer0 (integer) 1
127.0.0.1:6379> set num1 100 OK 127.0.0.1:6379> incr num1 (integer) 101继续阅读“redis数据类型之string incr decr讲解”