summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/command-list.json
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:40:55 +0100
committerMitja Felicijan <mitja.felicijan@gmail.com>2026-01-21 22:40:55 +0100
commit5d8dfe892a2ea89f706ee140c3bdcfd89fe03fda (patch)
tree1acdfa5220cd13b7be43a2a01368e80d306473ca /examples/redis-unstable/src/commands/command-list.json
parentc7ab12bba64d9c20ccd79b132dac475f7bc3923e (diff)
downloadcrep-5d8dfe892a2ea89f706ee140c3bdcfd89fe03fda.tar.gz
Add Redis source code for testing
Diffstat (limited to 'examples/redis-unstable/src/commands/command-list.json')
-rw-r--r--examples/redis-unstable/src/commands/command-list.json55
1 files changed, 55 insertions, 0 deletions
diff --git a/examples/redis-unstable/src/commands/command-list.json b/examples/redis-unstable/src/commands/command-list.json
new file mode 100644
index 0000000..b85a9a5
--- /dev/null
+++ b/examples/redis-unstable/src/commands/command-list.json
@@ -0,0 +1,55 @@
+{
+ "LIST": {
+ "summary": "Returns a list of command names.",
+ "complexity": "O(N) where N is the total number of Redis commands",
+ "group": "server",
+ "since": "7.0.0",
+ "arity": -2,
+ "container": "COMMAND",
+ "function": "commandListCommand",
+ "command_flags": [
+ "LOADING",
+ "STALE",
+ "SENTINEL"
+ ],
+ "acl_categories": [
+ "CONNECTION"
+ ],
+ "command_tips": [
+ "NONDETERMINISTIC_OUTPUT_ORDER"
+ ],
+ "arguments": [
+ {
+ "name": "filterby",
+ "token": "FILTERBY",
+ "type": "oneof",
+ "optional": true,
+ "arguments": [
+ {
+ "name": "module-name",
+ "type": "string",
+ "token": "MODULE"
+ },
+ {
+ "name": "category",
+ "type": "string",
+ "token": "ACLCAT"
+ },
+ {
+ "name": "pattern",
+ "type": "pattern",
+ "token": "PATTERN"
+ }
+ ]
+ }
+ ],
+ "reply_schema": {
+ "type": "array",
+ "items": {
+ "description": "command name",
+ "type": "string"
+ },
+ "uniqueItems": true
+ }
+ }
+}