aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/flushdb.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/flushdb.json
parent58dac10aeb8f5a041c46bddbeaf4c7966a99b998 (diff)
downloadcrep-dcacc00e3750300617ba6e16eb346713f91a783a.tar.gz
Remove testing data
Diffstat (limited to 'examples/redis-unstable/src/commands/flushdb.json')
-rw-r--r--examples/redis-unstable/src/commands/flushdb.json55
1 files changed, 0 insertions, 55 deletions
diff --git a/examples/redis-unstable/src/commands/flushdb.json b/examples/redis-unstable/src/commands/flushdb.json
deleted file mode 100644
index f1d10b8..0000000
--- a/examples/redis-unstable/src/commands/flushdb.json
+++ /dev/null
@@ -1,55 +0,0 @@
1{
2 "FLUSHDB": {
3 "summary": "Remove all keys from the current database.",
4 "complexity": "O(N) where N is the number of keys in the selected database",
5 "group": "server",
6 "since": "1.0.0",
7 "arity": -1,
8 "function": "flushdbCommand",
9 "history": [
10 [
11 "4.0.0",
12 "Added the `ASYNC` flushing mode modifier."
13 ],
14 [
15 "6.2.0",
16 "Added the `SYNC` flushing mode modifier."
17 ]
18 ],
19 "command_flags": [
20 "WRITE"
21 ],
22 "acl_categories": [
23 "KEYSPACE",
24 "DANGEROUS"
25 ],
26 "command_tips": [
27 "REQUEST_POLICY:ALL_SHARDS",
28 "RESPONSE_POLICY:ALL_SUCCEEDED"
29 ],
30 "reply_schema": {
31 "const": "OK"
32 },
33 "arguments": [
34 {
35 "name": "flush-type",
36 "type": "oneof",
37 "optional": true,
38 "arguments": [
39 {
40 "name": "async",
41 "type": "pure-token",
42 "token": "ASYNC",
43 "since": "4.0.0"
44 },
45 {
46 "name": "sync",
47 "type": "pure-token",
48 "token": "SYNC",
49 "since": "6.2.0"
50 }
51 ]
52 }
53 ]
54 }
55}