summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/hincrby.md
blob: 71f53cb2e7a8b383ebec0017f5e87cd6c30aee8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Increments the number stored at `field` in the hash stored at `key` by
`increment`. If `key` does not exist, a new key holding a hash is created. If
`field` does not exist the value is set to `0` before the operation is
performed.

The range of values supported by `HINCRBY` is limited to 64 bit signed integers.

@return

@integer-reply: the value at `field` after the increment operation.

@examples

Since the `increment` argument is signed, both increment and decrement
operations can be performed:

```cli
HSET myhash field 5
HINCRBY myhash field 1
HINCRBY myhash field -1
HINCRBY myhash field -10
```