Redis Incr 命令

更新时间: 2019-07-07 15:54

Redis Incr 命令将 key 中储存的数字值增一。

如果 key 不存在,那么 key 的值会先被初始化为 0 ,然后再执行 INCR 操作。

如果值包含错误的类型,或字符串类型的值不能表示为数字,那么返回一个错误。

本操作的值限制在 64 位(bit)有符号数字表示之内。

语法

redis 127.0.0.1:6379> INCR KEY_NAME 

返回值

执行 INCR 命令之后 key 的值。

实例

实例1: key 已存在

127.0.0.1:6379> set domain 20
OK
127.0.0.1:6379> get domain
20
127.0.0.1:6379> incr domain
21
127.0.0.1:6379> get domain
21

实例2:key 不存在

127.0.0.1:6379> exists domain
0
127.0.0.1:6379> incr domain
1
127.0.0.1:6379> get domain
1

实例3:key 存在,但是值不是数字

127.0.0.1:6379> set domain www.codercto.com
OK
127.0.0.1:6379> incr domain
ERR value is not an integer or out of range

相关命令推荐

命令 描述
Redis Incrby 命令 将 key 所储存的值加上给定的增量值(increment) 。
Redis Incrbyfloat 命令 将 key 所储存的值加上给定的浮点增量值(increment) 。
Redis Decr 命令 将 key 中储存的数字值减一。
Redis Decrby 命令 key 所储存的值减去给定的减量值(decrement) 。

查看更多 Redis 字符串(String)命令

Uberland

Uberland

Alex Rosenblat / University of California Press / 2018-11-19 / GBP 21.00

Silicon Valley technology is transforming the way we work, and Uber is leading the charge. An American startup that promised to deliver entrepreneurship for the masses through its technology, Uber ins......一起来看看 《Uberland》 这本书的介绍吧!

XML、JSON 在线转换

XML、JSON 在线转换

在线XML、JSON转换工具

UNIX 时间戳转换

UNIX 时间戳转换

UNIX 时间戳转换

RGB CMYK 转换工具

RGB CMYK 转换工具

RGB CMYK 互转工具