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

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

parents a08686a5 e55568ed
{ {
"DOCTOR": { "DOCTOR": {
"summary": "Outputs memory problems report", "summary": "Outputs a memory problems report.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "4.0.0", "since": "4.0.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": "server", "group": "server",
"since": "4.0.0", "since": "4.0.0",
......
{ {
"MALLOC-STATS": { "MALLOC-STATS": {
"summary": "Show allocator internal stats", "summary": "Returns the allocator statistics.",
"complexity": "Depends on how much memory is allocated, could be slow", "complexity": "Depends on how much memory is allocated, could be slow",
"group": "server", "group": "server",
"since": "4.0.0", "since": "4.0.0",
......
{ {
"PURGE": { "PURGE": {
"summary": "Ask the allocator to release memory", "summary": "Asks the allocator to release memory.",
"complexity": "Depends on how much memory is allocated, could be slow", "complexity": "Depends on how much memory is allocated, could be slow",
"group": "server", "group": "server",
"since": "4.0.0", "since": "4.0.0",
......
{ {
"STATS": { "STATS": {
"summary": "Show memory usage details", "summary": "Returns details about memory usage.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "4.0.0", "since": "4.0.0",
......
{ {
"USAGE": { "USAGE": {
"summary": "Estimate the memory usage of a key", "summary": "Estimates the memory usage of a key.",
"complexity": "O(N) where N is the number of samples.", "complexity": "O(N) where N is the number of samples.",
"group": "server", "group": "server",
"since": "4.0.0", "since": "4.0.0",
......
{ {
"MEMORY": { "MEMORY": {
"summary": "A container for memory diagnostics commands", "summary": "A container for memory diagnostics commands.",
"complexity": "Depends on subcommand.", "complexity": "Depends on subcommand.",
"group": "server", "group": "server",
"since": "4.0.0", "since": "4.0.0",
......
{ {
"MGET": { "MGET": {
"summary": "Get the values of all the given keys", "summary": "Atomically returns the string values of one or more keys.",
"complexity": "O(N) where N is the number of keys to retrieve.", "complexity": "O(N) where N is the number of keys to retrieve.",
"group": "string", "group": "string",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"MIGRATE": { "MIGRATE": {
"summary": "Atomically transfer a key from a Redis instance to another one.", "summary": "Atomically transfers a key from one Redis instance to another.",
"complexity": "This command actually executes a DUMP+DEL in the source instance, and a RESTORE in the target instance. See the pages of these commands for time complexity. Also an O(N) data transfer between the two instances is performed.", "complexity": "This command actually executes a DUMP+DEL in the source instance, and a RESTORE in the target instance. See the pages of these commands for time complexity. Also an O(N) data transfer between the two instances is performed.",
"group": "generic", "group": "generic",
"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": "server", "group": "server",
"since": "5.0.0", "since": "5.0.0",
......
{ {
"LIST": { "LIST": {
"summary": "List all modules loaded by the server", "summary": "Returns all loaded modules.",
"complexity": "O(N) where N is the number of loaded modules.", "complexity": "O(N) where N is the number of loaded modules.",
"group": "server", "group": "server",
"since": "4.0.0", "since": "4.0.0",
......
{ {
"LOAD": { "LOAD": {
"summary": "Load a module", "summary": "Loads a module.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "4.0.0", "since": "4.0.0",
......
{ {
"LOADEX": { "LOADEX": {
"summary": "Load a module with extended parameters", "summary": "Loads a module using extended parameters.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"UNLOAD": { "UNLOAD": {
"summary": "Unload a module", "summary": "Unloads a module.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "4.0.0", "since": "4.0.0",
......
{ {
"MODULE": { "MODULE": {
"summary": "A container for module commands", "summary": "A container for module commands.",
"complexity": "Depends on subcommand.", "complexity": "Depends on subcommand.",
"group": "server", "group": "server",
"since": "4.0.0", "since": "4.0.0",
......
{ {
"MONITOR": { "MONITOR": {
"summary": "Listen for all requests received by the server in real time", "summary": "Listens for all requests received by the server in real-time.",
"group": "server", "group": "server",
"since": "1.0.0", "since": "1.0.0",
"arity": 1, "arity": 1,
......
{ {
"MOVE": { "MOVE": {
"summary": "Move a key to another database", "summary": "Moves a key to another database.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "generic", "group": "generic",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"MSET": { "MSET": {
"summary": "Set multiple keys to multiple values", "summary": "Atomically creates or modifies the string values of one or more keys.",
"complexity": "O(N) where N is the number of keys to set.", "complexity": "O(N) where N is the number of keys to set.",
"group": "string", "group": "string",
"since": "1.0.1", "since": "1.0.1",
......
{ {
"MSETNX": { "MSETNX": {
"summary": "Set multiple keys to multiple values, only if none of the keys exist", "summary": "Atomically modifies the string values of one or more keys only when all keys don't exist.",
"complexity": "O(N) where N is the number of keys to set.", "complexity": "O(N) where N is the number of keys to set.",
"group": "string", "group": "string",
"since": "1.0.1", "since": "1.0.1",
......
{ {
"MULTI": { "MULTI": {
"summary": "Mark the start of a transaction block", "summary": "Starts a transaction.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "transactions", "group": "transactions",
"since": "1.2.0", "since": "1.2.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