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

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

parents a08686a5 e55568ed
{ {
"ROLE": { "ROLE": {
"summary": "Return the role of the instance in the context of replication", "summary": "Returns the replication role.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "2.8.12", "since": "2.8.12",
......
{ {
"RPOP": { "RPOP": {
"summary": "Remove and get the last elements in a list", "summary": "Returns and removes the last elements of a list. Deletes the list if the lst element was popped.",
"complexity": "O(N) where N is the number of elements returned", "complexity": "O(N) where N is the number of elements returned",
"group": "list", "group": "list",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"RPOPLPUSH": { "RPOPLPUSH": {
"summary": "Remove the last element in a list, prepend it to another list and return it", "summary": "Returns the last element of a list after removing and pushing it to another list. Deletes the list if the lst element was popped.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "list", "group": "list",
"since": "1.2.0", "since": "1.2.0",
......
{ {
"RPUSH": { "RPUSH": {
"summary": "Append one or multiple elements to a list", "summary": "Appends one or more elements to a list. Creates the key if it doesn't exist.",
"complexity": "O(1) for each element added, so O(N) to add N elements when the command is called with multiple arguments.", "complexity": "O(1) for each element added, so O(N) to add N elements when the command is called with multiple arguments.",
"group": "list", "group": "list",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"RPUSHX": { "RPUSHX": {
"summary": "Append an element to a list, only if the list exists", "summary": "Appends an element to a list only when the list exists.",
"complexity": "O(1) for each element added, so O(N) to add N elements when the command is called with multiple arguments.", "complexity": "O(1) for each element added, so O(N) to add N elements when the command is called with multiple arguments.",
"group": "list", "group": "list",
"since": "2.2.0", "since": "2.2.0",
......
{ {
"SADD": { "SADD": {
"summary": "Add one or more members to a set", "summary": "Adds one or more members to a set. Creates the key if it doesn't exist.",
"complexity": "O(1) for each element added, so O(N) to add N elements when the command is called with multiple arguments.", "complexity": "O(1) for each element added, so O(N) to add N elements when the command is called with multiple arguments.",
"group": "set", "group": "set",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"SAVE": { "SAVE": {
"summary": "Synchronously save the dataset to disk", "summary": "Synchronously saves the database(s) to disk.",
"complexity": "O(N) where N is the total number of keys in all databases", "complexity": "O(N) where N is the total number of keys in all databases",
"group": "server", "group": "server",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"SCAN": { "SCAN": {
"summary": "Incrementally iterate the keys space", "summary": "Iterates over the key names in the database.",
"complexity": "O(1) for every call. O(N) for a complete iteration, including enough command calls for the cursor to return back to 0. N is the number of elements inside the collection.", "complexity": "O(1) for every call. O(N) for a complete iteration, including enough command calls for the cursor to return back to 0. N is the number of elements inside the collection.",
"group": "generic", "group": "generic",
"since": "2.8.0", "since": "2.8.0",
......
{ {
"SCARD": { "SCARD": {
"summary": "Get the number of members in a set", "summary": "Returns the number of members in a set.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "set", "group": "set",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"DEBUG": { "DEBUG": {
"summary": "Set the debug mode for executed scripts.", "summary": "Sets the debug mode of server-side Lua scripts.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "scripting", "group": "scripting",
"since": "3.2.0", "since": "3.2.0",
......
{ {
"EXISTS": { "EXISTS": {
"summary": "Check existence of scripts in the script cache.", "summary": "Determines whether server-side Lua scripts exist in the script cache.",
"complexity": "O(N) with N being the number of scripts to check (so checking a single script is an O(1) operation).", "complexity": "O(N) with N being the number of scripts to check (so checking a single script is an O(1) operation).",
"group": "scripting", "group": "scripting",
"since": "2.6.0", "since": "2.6.0",
......
{ {
"FLUSH": { "FLUSH": {
"summary": "Remove all the scripts from the script cache.", "summary": "Removes all server-side Lua scripts from the script cache.",
"complexity": "O(N) with N being the number of scripts in cache", "complexity": "O(N) with N being the number of scripts in cache",
"group": "scripting", "group": "scripting",
"since": "2.6.0", "since": "2.6.0",
......
{ {
"HELP": { "HELP": {
"summary": "Show helpful text about the different subcommands", "summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "scripting", "group": "scripting",
"since": "5.0.0", "since": "5.0.0",
......
{ {
"KILL": { "KILL": {
"summary": "Kill the script currently in execution.", "summary": "Terminates a server-side Lua script during execution.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "scripting", "group": "scripting",
"since": "2.6.0", "since": "2.6.0",
......
{ {
"LOAD": { "LOAD": {
"summary": "Load the specified Lua script into the script cache.", "summary": "Loads a server-side Lua script to the script cache.",
"complexity": "O(N) with N being the length in bytes of the script body.", "complexity": "O(N) with N being the length in bytes of the script body.",
"group": "scripting", "group": "scripting",
"since": "2.6.0", "since": "2.6.0",
......
{ {
"SCRIPT": { "SCRIPT": {
"summary": "A container for Lua scripts management commands", "summary": "A container for Lua scripts management commands.",
"complexity": "Depends on subcommand.", "complexity": "Depends on subcommand.",
"group": "scripting", "group": "scripting",
"since": "2.6.0", "since": "2.6.0",
......
{ {
"SDIFF": { "SDIFF": {
"summary": "Subtract multiple sets", "summary": "Returns the difference of multiple sets.",
"complexity": "O(N) where N is the total number of elements in all given sets.", "complexity": "O(N) where N is the total number of elements in all given sets.",
"group": "set", "group": "set",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"SDIFFSTORE": { "SDIFFSTORE": {
"summary": "Subtract multiple sets and store the resulting set in a key", "summary": "Stores the difference of multiple sets in a key.",
"complexity": "O(N) where N is the total number of elements in all given sets.", "complexity": "O(N) where N is the total number of elements in all given sets.",
"group": "set", "group": "set",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"SELECT": { "SELECT": {
"summary": "Change the selected database for the current connection", "summary": "Changes the selected database.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "connection", "group": "connection",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"CKQUORUM": { "CKQUORUM": {
"summary": "Check for a Sentinel quorum", "summary": "Checks for a Redis Sentinel quorum.",
"group": "sentinel", "group": "sentinel",
"since": "2.8.4", "since": "2.8.4",
"arity": 3, "arity": 3,
......
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