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

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

parents a08686a5 e55568ed
{ {
"HINCRBYFLOAT": { "HINCRBYFLOAT": {
"summary": "Increment the float value of a hash field by the given amount", "summary": "Increments the floating point value of a field by a number. Uses 0 as initial value if the field doesn't exist.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "hash", "group": "hash",
"since": "2.6.0", "since": "2.6.0",
......
{ {
"HKEYS": { "HKEYS": {
"summary": "Get all the fields in a hash", "summary": "Returns all fields in a hash.",
"complexity": "O(N) where N is the size of the hash.", "complexity": "O(N) where N is the size of the hash.",
"group": "hash", "group": "hash",
"since": "2.0.0", "since": "2.0.0",
......
{ {
"HLEN": { "HLEN": {
"summary": "Get the number of fields in a hash", "summary": "Returns the number of fields in a hash.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "hash", "group": "hash",
"since": "2.0.0", "since": "2.0.0",
......
{ {
"HMGET": { "HMGET": {
"summary": "Get the values of all the given hash fields", "summary": "Returns the values of all fields in a hash.",
"complexity": "O(N) where N is the number of fields being requested.", "complexity": "O(N) where N is the number of fields being requested.",
"group": "hash", "group": "hash",
"since": "2.0.0", "since": "2.0.0",
......
{ {
"HMSET": { "HMSET": {
"summary": "Set multiple hash fields to multiple values", "summary": "Sets the values of multiple fields.",
"complexity": "O(N) where N is the number of fields being set.", "complexity": "O(N) where N is the number of fields being set.",
"group": "hash", "group": "hash",
"since": "2.0.0", "since": "2.0.0",
......
{ {
"HRANDFIELD": { "HRANDFIELD": {
"summary": "Get one or multiple random fields from a hash", "summary": "Returns one or more random fields from a hash.",
"complexity": "O(N) where N is the number of fields returned", "complexity": "O(N) where N is the number of fields returned",
"group": "hash", "group": "hash",
"since": "6.2.0", "since": "6.2.0",
......
{ {
"HSCAN": { "HSCAN": {
"summary": "Incrementally iterate hash fields and associated values", "summary": "Iterates over fields and values of a hash.",
"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": "hash", "group": "hash",
"since": "2.8.0", "since": "2.8.0",
......
{ {
"HSET": { "HSET": {
"summary": "Set the string value of a hash field", "summary": "Creates or modifies the value of a field in a hash.",
"complexity": "O(1) for each field/value pair added, so O(N) to add N field/value pairs when the command is called with multiple field/value pairs.", "complexity": "O(1) for each field/value pair added, so O(N) to add N field/value pairs when the command is called with multiple field/value pairs.",
"group": "hash", "group": "hash",
"since": "2.0.0", "since": "2.0.0",
......
{ {
"HSETNX": { "HSETNX": {
"summary": "Set the value of a hash field, only if the field does not exist", "summary": "Sets the value of a field in a hash only when the field doesn't exist.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "hash", "group": "hash",
"since": "2.0.0", "since": "2.0.0",
......
{ {
"HSTRLEN": { "HSTRLEN": {
"summary": "Get the length of the value of a hash field", "summary": "Returns the length of the value of a field.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "hash", "group": "hash",
"since": "3.2.0", "since": "3.2.0",
......
{ {
"HVALS": { "HVALS": {
"summary": "Get all the values in a hash", "summary": "Returns all values in a hash.",
"complexity": "O(N) where N is the size of the hash.", "complexity": "O(N) where N is the size of the hash.",
"group": "hash", "group": "hash",
"since": "2.0.0", "since": "2.0.0",
......
{ {
"INCR": { "INCR": {
"summary": "Increment the integer value of a key by one", "summary": "Increments the integer value of a key by one. Uses 0 as initial value if the key doesn't exist.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "string", "group": "string",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"INCRBY": { "INCRBY": {
"summary": "Increment the integer value of a key by the given amount", "summary": "Increments the integer value of a key by a number. Uses 0 as initial value if the key doesn't exist.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "string", "group": "string",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"INCRBYFLOAT": { "INCRBYFLOAT": {
"summary": "Increment the float value of a key by the given amount", "summary": "Increment the floating point value of a key by a number. Uses 0 as initial value if the key doesn't exist.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "string", "group": "string",
"since": "2.6.0", "since": "2.6.0",
......
{ {
"INFO": { "INFO": {
"summary": "Get information and statistics about the server", "summary": "Returns information and statistics about the server.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"KEYS": { "KEYS": {
"summary": "Find all keys matching the given pattern", "summary": "Returns all key names that match a pattern.",
"complexity": "O(N) with N being the number of keys in the database, under the assumption that the key names in the database and the given pattern have limited length.", "complexity": "O(N) with N being the number of keys in the database, under the assumption that the key names in the database and the given pattern have limited length.",
"group": "generic", "group": "generic",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"LASTSAVE": { "LASTSAVE": {
"summary": "Get the UNIX time stamp of the last successful save to disk", "summary": "Returns the Unix timestamp of the last successful save to disk.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"DOCTOR": { "DOCTOR": {
"summary": "Return a human readable latency analysis report.", "summary": "Returns a human-readable latency analysis report.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "2.8.13", "since": "2.8.13",
......
{ {
"GRAPH": { "GRAPH": {
"summary": "Return a latency graph for the event.", "summary": "Returns a latency graph for an event.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "2.8.13", "since": "2.8.13",
......
{ {
"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": "2.8.13", "since": "2.8.13",
......
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