summaryrefslogtreecommitdiff
path: root/examples/redis-unstable/src/commands/pubsub-shardchannels.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/redis-unstable/src/commands/pubsub-shardchannels.json')
-rw-r--r--examples/redis-unstable/src/commands/pubsub-shardchannels.json31
1 files changed, 0 insertions, 31 deletions
diff --git a/examples/redis-unstable/src/commands/pubsub-shardchannels.json b/examples/redis-unstable/src/commands/pubsub-shardchannels.json
deleted file mode 100644
index 7aa0a7a..0000000
--- a/examples/redis-unstable/src/commands/pubsub-shardchannels.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "SHARDCHANNELS": {
- "summary": "Returns the active shard channels.",
- "complexity": "O(N) where N is the number of active shard channels, and assuming constant time pattern matching (relatively short shard channels).",
- "group": "pubsub",
- "since": "7.0.0",
- "arity": -2,
- "container": "PUBSUB",
- "function": "pubsubCommand",
- "command_flags": [
- "PUBSUB",
- "LOADING",
- "STALE"
- ],
- "arguments": [
- {
- "name": "pattern",
- "type": "pattern",
- "optional": true
- }
- ],
- "reply_schema": {
- "description": "a list of active channels, optionally matching the specified pattern",
- "type": "array",
- "items": {
- "type": "string"
- },
- "uniqueItems": true
- }
- }
-}