Redis HINCRBY命令用於增長存儲在字段中存儲由增量鍵哈希的數量。若是鍵不存在,新的key被哈希建立。若是字段不存在,值被設置爲0以前進行操做。html
回覆整數,字段的增值操做後的值。python
redis HINCRBY命令的基本語法以下所示:redis
redis 127.0.0.1:6379> HINCRBY KEY_NAME FIELD_NAME INCR_BY_NUMBER
redis 127.0.0.1:6379> HSET myhash field1 20 (integer) 1 redis 127.0.0.1:6379> HINCRBY myhash field 1 (integer) 21 redis 127.0.0.1:6379> HINCRBY myhash field -1 (integer) 20
HINCRBY key field incrementhtm
爲哈希表 key 中的域 field 的值加上增量 increment 。rem
增量也能夠爲負數,至關於對給定域進行減法操做。字符串
若是 key 不存在,一個新的哈希表被建立並執行 HINCRBY 命令。get
若是域 field 不存在,那麼在執行命令前,域的值被初始化爲 0 。string
對一個儲存字符串值的域 field 執行 HINCRBY 命令將形成一個錯誤。hash
本操做的值被限制在 64 位(bit)有符號數字表示以內。it
# increment 爲正數
redis> HEXISTS counter page_view # 對空域進行設置
(integer) 0
redis> HINCRBY counter page_view 200
(integer) 200
redis> HGET counter page_view
"200"
# increment 爲負數
redis> HGET counter page_view
"200"
redis> HINCRBY counter page_view -50
(integer) 150
redis> HGET counter page_view
"150"
# 嘗試對字符串值的域執行HINCRBY命令
redis> HSET myhash string hello,world # 設定一個字符串值
(integer) 1
redis> HGET myhash string
"hello,world"
redis> HINCRBY myhash string 1 # 命令執行失敗,錯誤。
(error) ERR hash value is not an integer
redis> HGET myhash string # 原值不變
"hello,world"