aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/client-trackinginfo.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/client-trackinginfo.json')
-rw-r--r--examples/redis-unstable/src/commands/client-trackinginfo.json80
1 files changed, 0 insertions, 80 deletions
diff --git a/examples/redis-unstable/src/commands/client-trackinginfo.json b/examples/redis-unstable/src/commands/client-trackinginfo.json
deleted file mode 100644
index 270a3d5..0000000
--- a/examples/redis-unstable/src/commands/client-trackinginfo.json
+++ /dev/null
@@ -1,80 +0,0 @@
1{
2 "TRACKINGINFO": {
3 "summary": "Returns information about server-assisted client-side caching for the connection.",
4 "complexity": "O(1)",
5 "group": "connection",
6 "since": "6.2.0",
7 "arity": 2,
8 "container": "CLIENT",
9 "function": "clientCommand",
10 "command_flags": [
11 "NOSCRIPT",
12 "LOADING",
13 "STALE",
14 "SENTINEL"
15 ],
16 "acl_categories": [
17 "CONNECTION"
18 ],
19 "reply_schema": {
20 "type": "object",
21 "additionalProperties": false,
22 "properties": {
23 "flags": {
24 "type": "array",
25 "items": {
26 "oneOf": [
27 {
28 "const": "off",
29 "description": "The connection isn't using server assisted client side caching."
30 },
31 {
32 "const": "on",
33 "description": "Server assisted client side caching is enabled for the connection."
34 },
35 {
36 "const": "bcast",
37 "description": "The client uses broadcasting mode."
38 },
39 {
40 "const": "optin",
41 "description": "The client does not cache keys by default."
42 },
43 {
44 "const": "optout",
45 "description": "The client caches keys by default."
46 },
47 {
48 "const": "caching-yes",
49 "description": "The next command will cache keys (exists only together with optin)."
50 },
51 {
52 "const": "caching-no",
53 "description": "The next command won't cache keys (exists only together with optout)."
54 },
55 {
56 "const": "noloop",
57 "description": "The client isn't notified about keys modified by itself."
58 },
59 {
60 "const": "broken_redirect",
61 "description": "The client ID used for redirection isn't valid anymore."
62 }
63 ]
64 }
65 },
66 "redirect": {
67 "type": "integer",
68 "description": "The client ID used for notifications redirection, or -1 when none."
69 },
70 "prefixes": {
71 "type": "array",
72 "description": "List of key prefixes for which notifications are sent to the client.",
73 "items": {
74 "type": "string"
75 }
76 }
77 }
78 }
79 }
80}