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

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

parents a08686a5 e55568ed
{
"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",
......
{
"RESETSTAT": {
"summary": "Reset the stats returned by INFO",
"summary": "Resets the server's statistics.",
"complexity": "O(1)",
"group": "server",
"since": "2.0.0",
......
{
"REWRITE": {
"summary": "Rewrite the configuration file with the in memory configuration",
"summary": "Persists the effective configuration to file.",
"complexity": "O(1)",
"group": "server",
"since": "2.8.0",
......
{
"SET": {
"summary": "Set configuration parameters to the given values",
"summary": "Sets configuration parameters in-flight.",
"complexity": "O(N) when N is the number of configuration parameters provided",
"group": "server",
"since": "2.0.0",
......
{
"CONFIG": {
"summary": "A container for server configuration commands",
"summary": "A container for server configuration commands.",
"complexity": "Depends on subcommand.",
"group": "server",
"since": "2.0.0",
......
{
"COPY": {
"summary": "Copy a key",
"summary": "Copies the value of a key to a new key.",
"complexity": "O(N) worst case for collections, where N is the number of nested items. O(1) for string values.",
"group": "generic",
"since": "6.2.0",
......
{
"DBSIZE": {
"summary": "Return the number of keys in the selected database",
"summary": "Returns the number of keys in the database.",
"complexity": "O(1)",
"group": "server",
"since": "1.0.0",
......
{
"DEBUG": {
"summary": "A container for debugging commands",
"summary": "A container for debugging commands.",
"complexity": "Depends on subcommand.",
"group": "server",
"since": "1.0.0",
......
{
"DECR": {
"summary": "Decrement the integer value of a key by one",
"summary": "Decrements the integer value of a key by one. Uses 0 as initial value if the key doesn't exist.",
"complexity": "O(1)",
"group": "string",
"since": "1.0.0",
......
{
"DECRBY": {
"summary": "Decrement the integer value of a key by the given number",
"summary": "Decrements a number from the integer value of a key. Uses 0 as initial value if the key doesn't exist.",
"complexity": "O(1)",
"group": "string",
"since": "1.0.0",
......
{
"DEL": {
"summary": "Delete a key",
"summary": "Deletes one or more keys.",
"complexity": "O(N) where N is the number of keys that will be removed. When a key to remove holds a value other than a string, the individual complexity for this key is O(M) where M is the number of elements in the list, set, sorted set or hash. Removing a single key that holds a string value is O(1).",
"group": "generic",
"since": "1.0.0",
......
{
"DISCARD": {
"summary": "Discard all commands issued after MULTI",
"summary": "Discards a transaction.",
"complexity": "O(N), when N is the number of queued commands",
"group": "transactions",
"since": "2.0.0",
......
{
"DUMP": {
"summary": "Return a serialized version of the value stored at the specified key.",
"summary": "Returns a serialized representation of the value stored at a key.",
"complexity": "O(1) to access the key and additional O(N*M) to serialize it, where N is the number of Redis objects composing the value and M their average size. For small string values the time complexity is thus O(1)+O(1*M) where M is small, so simply O(1).",
"group": "generic",
"since": "2.6.0",
......
{
"ECHO": {
"summary": "Echo the given string",
"summary": "Returns the given string.",
"complexity": "O(1)",
"group": "connection",
"since": "1.0.0",
......
{
"EVAL": {
"summary": "Execute a Lua script server side",
"summary": "Executes a server-side Lua script.",
"complexity": "Depends on the script that is executed.",
"group": "scripting",
"since": "2.6.0",
......
{
"EVAL_RO": {
"summary": "Execute a read-only Lua script server side",
"summary": "Executes a read-only server-side Lua script.",
"complexity": "Depends on the script that is executed.",
"group": "scripting",
"since": "7.0.0",
......
{
"EVALSHA": {
"summary": "Execute a Lua script server side",
"summary": "Executes a server-side Lua script by SHA1 digest.",
"complexity": "Depends on the script that is executed.",
"group": "scripting",
"since": "2.6.0",
......
{
"EVALSHA_RO": {
"summary": "Execute a read-only Lua script server side",
"summary": "Executes a read-only server-side Lua script by SHA1 digest.",
"complexity": "Depends on the script that is executed.",
"group": "scripting",
"since": "7.0.0",
......
{
"EXEC": {
"summary": "Execute all commands issued after MULTI",
"summary": "Executes all commands in a transaction.",
"complexity": "Depends on commands in the transaction",
"group": "transactions",
"since": "1.2.0",
......
{
"EXISTS": {
"summary": "Determine if a key exists",
"summary": "Determines whether one or more keys exist.",
"complexity": "O(N) where N is the number of keys to check.",
"group": "generic",
"since": "1.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