Commit ad94bc31 authored by Vitaly Arbuzov's avatar Vitaly Arbuzov
Browse files

Merge branch 'unstable' into dict-split-by-slot

parents a08686a5 e55568ed
{
"WAIT": {
"summary": "Wait for the synchronous replication of all the write commands sent in the context of the current connection",
"summary": "Blocks until the asynchronous replication of all preceding write commands sent by the connection is completed.",
"complexity": "O(1)",
"group": "generic",
"since": "3.0.0",
......
{
"WAITAOF": {
"summary": "Wait for all write commands sent in the context of the current connection to be synced to AOF of local host and/or replicas",
"summary": "Blocks until all of the preceding write commands sent by the connection are written to the append-only file of the master and/or replicas.",
"complexity": "O(1)",
"group": "generic",
"since": "7.2.0",
......
{
"WATCH": {
"summary": "Watch the given keys to determine execution of the MULTI/EXEC block",
"summary": "Monitors changes to keys to determine the execution of a transaction.",
"complexity": "O(1) for every key.",
"group": "transactions",
"since": "2.2.0",
......
{
"XACK": {
"summary": "Marks a pending message as correctly processed, effectively removing it from the pending entries list of the consumer group. Return value of the command is the number of messages successfully acknowledged, that is, the IDs we were actually able to resolve in the PEL.",
"summary": "Returns the number of messages that were successfully acknowledged by the consumer group member of a stream.",
"complexity": "O(1) for each message ID processed.",
"group": "stream",
"since": "5.0.0",
......
{
"XADD": {
"summary": "Appends a new entry to a stream",
"summary": "Appends a new message to a stream. Creates the key if it doesn't exist.",
"complexity": "O(1) when adding a new entry, O(N) when trimming where N being the number of entries evicted.",
"group": "stream",
"since": "5.0.0",
......
{
"XAUTOCLAIM": {
"summary": "Changes (or acquires) ownership of messages in a consumer group, as if the messages were delivered to the specified consumer.",
"summary": "Changes, or acquires, ownership of messages in a consumer group, as if the messages were delivered to as consumer group member.",
"complexity": "O(1) if COUNT is small.",
"group": "stream",
"since": "6.2.0",
......
{
"XCLAIM": {
"summary": "Changes (or acquires) ownership of a message in a consumer group, as if the message was delivered to the specified consumer.",
"summary": "Changes, or acquires, ownership of a message in a consumer group, as if the message was delivered a consumer group member.",
"complexity": "O(log N) with N being the number of messages in the PEL of the consumer group.",
"group": "stream",
"since": "5.0.0",
......
{
"XDEL": {
"summary": "Removes the specified entries from the stream. Returns the number of items actually deleted, that may be different from the number of IDs passed in case certain IDs do not exist.",
"summary": "Returns the number of messages after removing them from a stream.",
"complexity": "O(1) for each single item to delete in the stream, regardless of the stream size.",
"group": "stream",
"since": "5.0.0",
......
{
"CREATE": {
"summary": "Create a consumer group.",
"summary": "Creates a consumer group.",
"complexity": "O(1)",
"group": "stream",
"since": "5.0.0",
......
{
"CREATECONSUMER": {
"summary": "Create a consumer in a consumer group.",
"summary": "Creates a consumer in a consumer group.",
"complexity": "O(1)",
"group": "stream",
"since": "6.2.0",
......
{
"DELCONSUMER": {
"summary": "Delete a consumer from a consumer group.",
"summary": "Deletes a consumer from a consumer group.",
"complexity": "O(1)",
"group": "stream",
"since": "5.0.0",
......
{
"DESTROY": {
"summary": "Destroy a consumer group.",
"summary": "Destroys a consumer group.",
"complexity": "O(N) where N is the number of entries in the group's pending entries list (PEL).",
"group": "stream",
"since": "5.0.0",
......
{
"HELP": {
"summary": "Show helpful text about the different subcommands",
"summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)",
"group": "stream",
"since": "5.0.0",
......
{
"SETID": {
"summary": "Set a consumer group to an arbitrary last delivered ID value.",
"summary": "Sets the last-delivered ID of a consumer group.",
"complexity": "O(1)",
"group": "stream",
"since": "5.0.0",
......
{
"XGROUP": {
"summary": "A container for consumer groups commands",
"summary": "A container for consumer groups commands.",
"complexity": "Depends on subcommand.",
"group": "stream",
"since": "5.0.0",
......
{
"CONSUMERS": {
"summary": "List the consumers in a consumer group",
"summary": "Returns a list of the consumers in a consumer group.",
"complexity": "O(1)",
"group": "stream",
"since": "5.0.0",
......
{
"GROUPS": {
"summary": "List the consumer groups of a stream",
"summary": "Returns a list of the consumer groups of a stream.",
"complexity": "O(1)",
"group": "stream",
"since": "5.0.0",
......
{
"HELP": {
"summary": "Show helpful text about the different subcommands",
"summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)",
"group": "stream",
"since": "5.0.0",
......
{
"STREAM": {
"summary": "Get information about a stream",
"summary": "Returns information about a stream.",
"complexity": "O(1)",
"group": "stream",
"since": "5.0.0",
......
{
"XINFO": {
"summary": "A container for stream introspection commands",
"summary": "A container for stream introspection commands.",
"complexity": "Depends on subcommand.",
"group": "stream",
"since": "5.0.0",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment