summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/wait.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/wait.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/wait.json')
-rw-r--r--examples/redis-unstable/src/commands/wait.json35
1 files changed, 0 insertions, 35 deletions
diff --git a/examples/redis-unstable/src/commands/wait.json b/examples/redis-unstable/src/commands/wait.json
deleted file mode 100644
index cb82f64..0000000
--- a/examples/redis-unstable/src/commands/wait.json
+++ /dev/null
@@ -1,35 +0,0 @@
1{
2 "WAIT": {
3 "summary": "Blocks until the asynchronous replication of all preceding write commands sent by the connection is completed.",
4 "complexity": "O(1)",
5 "group": "generic",
6 "since": "3.0.0",
7 "arity": 3,
8 "function": "waitCommand",
9 "command_flags": [
10 "BLOCKING"
11 ],
12 "acl_categories": [
13 "CONNECTION"
14 ],
15 "command_tips": [
16 "REQUEST_POLICY:ALL_SHARDS",
17 "RESPONSE_POLICY:AGG_MIN"
18 ],
19 "reply_schema": {
20 "type": "integer",
21 "description": "The number of replicas reached by all the writes performed in the context of the current connection.",
22 "minimum": 0
23 },
24 "arguments": [
25 {
26 "name": "numreplicas",
27 "type": "integer"
28 },
29 {
30 "name": "timeout",
31 "type": "integer"
32 }
33 ]
34 }
35}