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

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

parents a08686a5 e55568ed
{
"DOCTOR": {
"summary": "Outputs memory problems report",
"summary": "Outputs a memory problems report.",
"complexity": "O(1)",
"group": "server",
"since": "4.0.0",
......
{
"HELP": {
"summary": "Show helpful text about the different subcommands",
"summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)",
"group": "server",
"since": "4.0.0",
......
{
"MALLOC-STATS": {
"summary": "Show allocator internal stats",
"summary": "Returns the allocator statistics.",
"complexity": "Depends on how much memory is allocated, could be slow",
"group": "server",
"since": "4.0.0",
......
{
"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",
"group": "server",
"since": "4.0.0",
......
{
"STATS": {
"summary": "Show memory usage details",
"summary": "Returns details about memory usage.",
"complexity": "O(1)",
"group": "server",
"since": "4.0.0",
......
{
"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.",
"group": "server",
"since": "4.0.0",
......
{
"MEMORY": {
"summary": "A container for memory diagnostics commands",
"summary": "A container for memory diagnostics commands.",
"complexity": "Depends on subcommand.",
"group": "server",
"since": "4.0.0",
......
{
"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.",
"group": "string",
"since": "1.0.0",
......
{
"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.",
"group": "generic",
"since": "2.6.0",
......
{
"HELP": {
"summary": "Show helpful text about the different subcommands",
"summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)",
"group": "server",
"since": "5.0.0",
......
{
"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.",
"group": "server",
"since": "4.0.0",
......
{
"LOAD": {
"summary": "Load a module",
"summary": "Loads a module.",
"complexity": "O(1)",
"group": "server",
"since": "4.0.0",
......
{
"LOADEX": {
"summary": "Load a module with extended parameters",
"summary": "Loads a module using extended parameters.",
"complexity": "O(1)",
"group": "server",
"since": "7.0.0",
......
{
"UNLOAD": {
"summary": "Unload a module",
"summary": "Unloads a module.",
"complexity": "O(1)",
"group": "server",
"since": "4.0.0",
......
{
"MODULE": {
"summary": "A container for module commands",
"summary": "A container for module commands.",
"complexity": "Depends on subcommand.",
"group": "server",
"since": "4.0.0",
......
{
"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",
"since": "1.0.0",
"arity": 1,
......
{
"MOVE": {
"summary": "Move a key to another database",
"summary": "Moves a key to another database.",
"complexity": "O(1)",
"group": "generic",
"since": "1.0.0",
......
{
"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.",
"group": "string",
"since": "1.0.1",
......
{
"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.",
"group": "string",
"since": "1.0.1",
......
{
"MULTI": {
"summary": "Mark the start of a transaction block",
"summary": "Starts a transaction.",
"complexity": "O(1)",
"group": "transactions",
"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