summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/client-setinfo.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/client-setinfo.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/client-setinfo.json')
-rw-r--r--examples/redis-unstable/src/commands/client-setinfo.json45
1 files changed, 0 insertions, 45 deletions
diff --git a/examples/redis-unstable/src/commands/client-setinfo.json b/examples/redis-unstable/src/commands/client-setinfo.json
deleted file mode 100644
index d0d8f73..0000000
--- a/examples/redis-unstable/src/commands/client-setinfo.json
+++ /dev/null
@@ -1,45 +0,0 @@
1{
2 "SETINFO": {
3 "summary": "Sets information specific to the client or connection.",
4 "complexity": "O(1)",
5 "group": "connection",
6 "since": "7.2.0",
7 "arity": 4,
8 "container": "CLIENT",
9 "function": "clientSetinfoCommand",
10 "command_flags": [
11 "NOSCRIPT",
12 "LOADING",
13 "STALE",
14 "SENTINEL"
15 ],
16 "command_tips": [
17 "REQUEST_POLICY:ALL_NODES",
18 "RESPONSE_POLICY:ALL_SUCCEEDED"
19 ],
20 "acl_categories": [
21 "CONNECTION"
22 ],
23 "reply_schema": {
24 "const": "OK"
25 },
26 "arguments": [
27 {
28 "name": "attr",
29 "type": "oneof",
30 "arguments": [
31 {
32 "token": "lib-name",
33 "name": "libname",
34 "type": "string"
35 },
36 {
37 "token": "lib-ver",
38 "name": "libver",
39 "type": "string"
40 }
41 ]
42 }
43 ]
44 }
45}