summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/getdel.json
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:52:54 +0100
commitdcacc00e3750300617ba6e16eb346713f91a783a (patch)
tree38e2d4fb5ed9d119711d4295c6eda4b014af73fd /examples/redis-unstable/src/commands/getdel.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/getdel.json')
-rw-r--r--examples/redis-unstable/src/commands/getdel.json57
1 files changed, 0 insertions, 57 deletions
diff --git a/examples/redis-unstable/src/commands/getdel.json b/examples/redis-unstable/src/commands/getdel.json
deleted file mode 100644
index f3d86b0..0000000
--- a/examples/redis-unstable/src/commands/getdel.json
+++ /dev/null
@@ -1,57 +0,0 @@
1{
2 "GETDEL": {
3 "summary": "Returns the string value of a key after deleting the key.",
4 "complexity": "O(1)",
5 "group": "string",
6 "since": "6.2.0",
7 "arity": 2,
8 "function": "getdelCommand",
9 "command_flags": [
10 "WRITE",
11 "FAST"
12 ],
13 "acl_categories": [
14 "STRING"
15 ],
16 "key_specs": [
17 {
18 "flags": [
19 "RW",
20 "ACCESS",
21 "DELETE"
22 ],
23 "begin_search": {
24 "index": {
25 "pos": 1
26 }
27 },
28 "find_keys": {
29 "range": {
30 "lastkey": 0,
31 "step": 1,
32 "limit": 0
33 }
34 }
35 }
36 ],
37 "reply_schema": {
38 "oneOf": [
39 {
40 "description": "The value of the key.",
41 "type": "string"
42 },
43 {
44 "description": "The key does not exist.",
45 "type": "null"
46 }
47 ]
48 },
49 "arguments": [
50 {
51 "name": "key",
52 "type": "key",
53 "key_spec_index": 0
54 }
55 ]
56 }
57}