summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/sentinel-info-cache.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/sentinel-info-cache.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/sentinel-info-cache.json')
-rw-r--r--examples/redis-unstable/src/commands/sentinel-info-cache.json64
1 files changed, 0 insertions, 64 deletions
diff --git a/examples/redis-unstable/src/commands/sentinel-info-cache.json b/examples/redis-unstable/src/commands/sentinel-info-cache.json
deleted file mode 100644
index af89f18..0000000
--- a/examples/redis-unstable/src/commands/sentinel-info-cache.json
+++ /dev/null
@@ -1,64 +0,0 @@
1{
2 "INFO-CACHE": {
3 "summary": "Returns the cached `INFO` replies from the deployment's instances.",
4 "complexity": "O(N) where N is the number of instances",
5 "group": "sentinel",
6 "since": "3.2.0",
7 "arity": -3,
8 "container": "SENTINEL",
9 "function": "sentinelCommand",
10 "command_flags": [
11 "ADMIN",
12 "SENTINEL",
13 "ONLY_SENTINEL"
14 ],
15 "reply_schema": {
16 "type": "array",
17 "description": "This is actually a map, the odd entries are a master name, and the even entries are the last cached INFO output from that master and all its replicas.",
18 "minItems": 0,
19 "maxItems": 4294967295,
20 "items": [
21 {
22 "oneOf": [
23 {
24 "type": "string",
25 "description": "The master name."
26 },
27 {
28 "type": "array",
29 "description": "This is an array of pairs, the odd entries are the INFO age, and the even entries are the cached INFO string. The first pair belong to the master and the rest are its replicas.",
30 "minItems": 2,
31 "maxItems": 2,
32 "items": [
33 {
34 "description": "The number of milliseconds since when the INFO was cached.",
35 "type": "integer"
36 },
37 {
38 "description": "The cached INFO string or null.",
39 "oneOf": [
40 {
41 "description": "The cached INFO string.",
42 "type": "string"
43 },
44 {
45 "description": "No cached INFO string.",
46 "type": "null"
47 }
48 ]
49 }
50 ]
51 }
52 ]
53 }
54 ]
55 },
56 "arguments": [
57 {
58 "name": "nodename",
59 "type": "string",
60 "multiple": true
61 }
62 ]
63 }
64}