forked from valkey-io/valkey
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Roshan Khatri <rvkhatri@amazon.com>
- Loading branch information
1 parent
93f8a19
commit fe09e22
Showing
9 changed files
with
218 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"MPUBLISH": { | ||
"summary": "Posts multiple messages to a channel.", | ||
"complexity": "O(N+M+P) where N is the number of clients subscribed to the receiving channel, M is the total number of subscribed patterns (by any client) and P is the number of messages to be published.", | ||
"group": "pubsub", | ||
"since": "2.0.0", | ||
"arity": 3, | ||
"function": "mpublishCommand", | ||
"command_flags": [ | ||
"PUBSUB", | ||
"LOADING", | ||
"STALE", | ||
"FAST", | ||
"MAY_REPLICATE", | ||
"SENTINEL" | ||
], | ||
"arguments": [ | ||
{ | ||
"name": "channel", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "message", | ||
"type": "string", | ||
"multiple": true | ||
} | ||
], | ||
"reply_schema": { | ||
"description": "The number of clients that received the message. Note that in a Cluster, only clients that are connected to the same node as the publishing client are included in the count.", | ||
"type": "integer", | ||
"minimum": 0 | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters