aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/brpop.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/brpop.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/brpop.json')
-rw-r--r--examples/redis-unstable/src/commands/brpop.json79
1 files changed, 0 insertions, 79 deletions
diff --git a/examples/redis-unstable/src/commands/brpop.json b/examples/redis-unstable/src/commands/brpop.json
deleted file mode 100644
index 129f74d..0000000
--- a/examples/redis-unstable/src/commands/brpop.json
+++ /dev/null
@@ -1,79 +0,0 @@
1{
2 "BRPOP": {
3 "summary": "Removes and returns the last element in a list. Blocks until an element is available otherwise. Deletes the list if the last element was popped.",
4 "complexity": "O(N) where N is the number of provided keys.",
5 "group": "list",
6 "since": "2.0.0",
7 "arity": -3,
8 "function": "brpopCommand",
9 "history": [
10 [
11 "6.0.0",
12 "`timeout` is interpreted as a double instead of an integer."
13 ]
14 ],
15 "command_flags": [
16 "WRITE",
17 "BLOCKING"
18 ],
19 "acl_categories": [
20 "LIST"
21 ],
22 "key_specs": [
23 {
24 "flags": [
25 "RW",
26 "ACCESS",
27 "DELETE"
28 ],
29 "begin_search": {
30 "index": {
31 "pos": 1
32 }
33 },
34 "find_keys": {
35 "range": {
36 "lastkey": -2,
37 "step": 1,
38 "limit": 0
39 }
40 }
41 }
42 ],
43 "arguments": [
44 {
45 "name": "key",
46 "type": "key",
47 "key_spec_index": 0,
48 "multiple": true
49 },
50 {
51 "name": "timeout",
52 "type": "double"
53 }
54 ],
55 "reply_schema": {
56 "oneOf": [
57 {
58 "description": "No element could be popped and the timeout expired.",
59 "type": "null"
60 },
61 {
62 "type": "array",
63 "minItems": 2,
64 "maxItems": 2,
65 "items": [
66 {
67 "description": "The name of the key where an element was popped ",
68 "type": "string"
69 },
70 {
71 "description": "The value of the popped element",
72 "type": "string"
73 }
74 ]
75 }
76 ]
77 }
78 }
79}