aboutsummaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/keys.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/keys.json')
-rw-r--r--examples/redis-unstable/src/commands/keys.json34
1 files changed, 0 insertions, 34 deletions
diff --git a/examples/redis-unstable/src/commands/keys.json b/examples/redis-unstable/src/commands/keys.json
deleted file mode 100644
index 9dd4e11..0000000
--- a/examples/redis-unstable/src/commands/keys.json
+++ /dev/null
@@ -1,34 +0,0 @@
1{
2 "KEYS": {
3 "summary": "Returns all key names that match a pattern.",
4 "complexity": "O(N) with N being the number of keys in the database, under the assumption that the key names in the database and the given pattern have limited length.",
5 "group": "generic",
6 "since": "1.0.0",
7 "arity": 2,
8 "function": "keysCommand",
9 "command_flags": [
10 "READONLY"
11 ],
12 "acl_categories": [
13 "KEYSPACE",
14 "DANGEROUS"
15 ],
16 "command_tips": [
17 "REQUEST_POLICY:ALL_SHARDS",
18 "NONDETERMINISTIC_OUTPUT_ORDER"
19 ],
20 "arguments": [
21 {
22 "name": "pattern",
23 "type": "pattern"
24 }
25 ],
26 "reply_schema": {
27 "description": "list of keys matching pattern",
28 "type": "array",
29 "items": {
30 "type": "string"
31 }
32 }
33 }
34}