1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
{
"XREAD": {
"summary": "Returns messages from multiple streams with IDs greater than the ones requested. Blocks until a message is available otherwise.",
"group": "stream",
"since": "5.0.0",
"arity": -4,
"function": "xreadCommand",
"get_keys_function": "xreadGetKeys",
"command_flags": [
"BLOCKING",
"READONLY",
"BLOCKING"
],
"acl_categories": [
"STREAM"
],
"key_specs": [
{
"flags": [
"RO",
"ACCESS"
],
"begin_search": {
"keyword": {
"keyword": "STREAMS",
"startfrom": 1
}
},
"find_keys": {
"range": {
"lastkey": -1,
"step": 1,
"limit": 2
}
}
}
],
"arguments": [
{
"token": "COUNT",
"name": "count",
"type": "integer",
"optional": true
},
{
"token": "BLOCK",
"name": "milliseconds",
"type": "integer",
"optional": true
},
{
"name": "streams",
"token": "STREAMS",
"type": "block",
"arguments": [
{
"name": "key",
"type": "key",
"key_spec_index": 0,
"multiple": true
},
{
"name": "ID",
"type": "string",
"multiple": true
}
]
}
],
"reply_schema": {
"oneOf": [
{
"description": "A map of key-value elements when each element composed of key name and the entries reported for that key",
"type": "object",
"patternProperties": {
"^.*$": {
"description": "The entries reported for that key",
"type": "array",
"items": {
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": [
{
"description": "entry id",
"type": "string",
"pattern": "[0-9]+-[0-9]+"
},
{
"description": "array of field-value pairs",
"type": "array",
"items": {
"type": "string"
}
}
]
}
}
}
},
{
"description": "If BLOCK option is given, and a timeout occurs, or there is no stream we can serve",
"type": "null"
}
]
}
}
}
|