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

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

parents a08686a5 e55568ed
{
"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)",
"group": "hash",
"since": "2.6.0",
......
{
"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.",
"group": "hash",
"since": "2.0.0",
......
{
"HLEN": {
"summary": "Get the number of fields in a hash",
"summary": "Returns the number of fields in a hash.",
"complexity": "O(1)",
"group": "hash",
"since": "2.0.0",
......
{
"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.",
"group": "hash",
"since": "2.0.0",
......
{
"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.",
"group": "hash",
"since": "2.0.0",
......
{
"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",
"group": "hash",
"since": "6.2.0",
......
{
"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.",
"group": "hash",
"since": "2.8.0",
......
{
"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.",
"group": "hash",
"since": "2.0.0",
......
{
"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)",
"group": "hash",
"since": "2.0.0",
......
{
"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)",
"group": "hash",
"since": "3.2.0",
......
{
"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.",
"group": "hash",
"since": "2.0.0",
......
{
"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)",
"group": "string",
"since": "1.0.0",
......
{
"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)",
"group": "string",
"since": "1.0.0",
......
{
"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)",
"group": "string",
"since": "2.6.0",
......
{
"INFO": {
"summary": "Get information and statistics about the server",
"summary": "Returns information and statistics about the server.",
"complexity": "O(1)",
"group": "server",
"since": "1.0.0",
......
{
"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.",
"group": "generic",
"since": "1.0.0",
......
{
"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)",
"group": "server",
"since": "1.0.0",
......
{
"DOCTOR": {
"summary": "Return a human readable latency analysis report.",
"summary": "Returns a human-readable latency analysis report.",
"complexity": "O(1)",
"group": "server",
"since": "2.8.13",
......
{
"GRAPH": {
"summary": "Return a latency graph for the event.",
"summary": "Returns a latency graph for an event.",
"complexity": "O(1)",
"group": "server",
"since": "2.8.13",
......
{
"HELP": {
"summary": "Show helpful text about the different subcommands.",
"summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)",
"group": "server",
"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