aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/hincrby.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/hincrby.json')
-rw-r--r--examples/redis-unstable/src/commands/hincrby.json58
1 files changed, 0 insertions, 58 deletions
diff --git a/examples/redis-unstable/src/commands/hincrby.json b/examples/redis-unstable/src/commands/hincrby.json
deleted file mode 100644
index a90f5ba..0000000
--- a/examples/redis-unstable/src/commands/hincrby.json
+++ /dev/null
@@ -1,58 +0,0 @@
1{
2 "HINCRBY": {
3 "summary": "Increments the integer value of a field in a hash by a number. Uses 0 as initial value if the field doesn't exist.",
4 "complexity": "O(1)",
5 "group": "hash",
6 "since": "2.0.0",
7 "arity": 4,
8 "function": "hincrbyCommand",
9 "command_flags": [
10 "WRITE",
11 "DENYOOM",
12 "FAST"
13 ],
14 "acl_categories": [
15 "HASH"
16 ],
17 "key_specs": [
18 {
19 "flags": [
20 "RW",
21 "ACCESS",
22 "UPDATE"
23 ],
24 "begin_search": {
25 "index": {
26 "pos": 1
27 }
28 },
29 "find_keys": {
30 "range": {
31 "lastkey": 0,
32 "step": 1,
33 "limit": 0
34 }
35 }
36 }
37 ],
38 "reply_schema": {
39 "type": "integer",
40 "description": "The value of the field after the increment operation."
41 },
42 "arguments": [
43 {
44 "name": "key",
45 "type": "key",
46 "key_spec_index": 0
47 },
48 {
49 "name": "field",
50 "type": "string"
51 },
52 {
53 "name": "increment",
54 "type": "integer"
55 }
56 ]
57 }
58}