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

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

parents a08686a5 e55568ed
{ {
"EXPIRE": { "EXPIRE": {
"summary": "Set a key's time to live in seconds", "summary": "Sets the expiration time of a key in seconds.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "generic", "group": "generic",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"EXPIREAT": { "EXPIREAT": {
"summary": "Set the expiration for a key as a UNIX timestamp", "summary": "Sets the expiration time of a key to a Unix timestamp.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "generic", "group": "generic",
"since": "1.2.0", "since": "1.2.0",
......
{ {
"EXPIRETIME": { "EXPIRETIME": {
"summary": "Get the expiration Unix timestamp for a key", "summary": "Returns the expiration time of a key as a Unix timestamp.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "generic", "group": "generic",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"FAILOVER": { "FAILOVER": {
"summary": "Start a coordinated failover between this server and one of its replicas.", "summary": "Starts a coordinated failover from a server to one of its replicas.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "6.2.0", "since": "6.2.0",
......
{ {
"FCALL": { "FCALL": {
"summary": "Invoke a function", "summary": "Invokes a function.",
"complexity": "Depends on the function that is executed.", "complexity": "Depends on the function that is executed.",
"group": "scripting", "group": "scripting",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"FCALL_RO": { "FCALL_RO": {
"summary": "Invoke a read-only function", "summary": "Invokes a read-only function.",
"complexity": "Depends on the function that is executed.", "complexity": "Depends on the function that is executed.",
"group": "scripting", "group": "scripting",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"FLUSHALL": { "FLUSHALL": {
"summary": "Remove all keys from all databases", "summary": "Removes all keys from all databases.",
"complexity": "O(N) where N is the total number of keys in all databases", "complexity": "O(N) where N is the total number of keys in all databases",
"group": "server", "group": "server",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"FLUSHDB": { "FLUSHDB": {
"summary": "Remove all keys from the current database", "summary": "Remove all keys from the current database.",
"complexity": "O(N) where N is the number of keys in the selected database", "complexity": "O(N) where N is the number of keys in the selected database",
"group": "server", "group": "server",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"DELETE": { "DELETE": {
"summary": "Delete a function by name", "summary": "Deletes a library and its functions.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "scripting", "group": "scripting",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"DUMP": { "DUMP": {
"summary": "Dump all functions into a serialized binary payload", "summary": "Dumps all libraries into a serialized binary payload.",
"complexity": "O(N) where N is the number of functions", "complexity": "O(N) where N is the number of functions",
"group": "scripting", "group": "scripting",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"FLUSH": { "FLUSH": {
"summary": "Deleting all functions", "summary": "Deletes all libraries and functions.",
"complexity": "O(N) where N is the number of functions deleted", "complexity": "O(N) where N is the number of functions deleted",
"group": "scripting", "group": "scripting",
"since": "7.0.0", "since": "7.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": "scripting", "group": "scripting",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"KILL": { "KILL": {
"summary": "Kill the function currently in execution.", "summary": "Terminates a function during execution.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "scripting", "group": "scripting",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"LIST": { "LIST": {
"summary": "List information about all the functions", "summary": "Returns information about all libraries.",
"complexity": "O(N) where N is the number of functions", "complexity": "O(N) where N is the number of functions",
"group": "scripting", "group": "scripting",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"LOAD": { "LOAD": {
"summary": "Create a function with the given arguments (name, code, description)", "summary": "Creates a library.",
"complexity": "O(1) (considering compilation time is redundant)", "complexity": "O(1) (considering compilation time is redundant)",
"group": "scripting", "group": "scripting",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"RESTORE": { "RESTORE": {
"summary": "Restore all the functions on the given payload", "summary": "Restores all libraries from a payload.",
"complexity": "O(N) where N is the number of functions on the payload", "complexity": "O(N) where N is the number of functions on the payload",
"group": "scripting", "group": "scripting",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"STATS": { "STATS": {
"summary": "Return information about the function currently running (name, description, duration)", "summary": "Returns information about a function during execution.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "scripting", "group": "scripting",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"FUNCTION": { "FUNCTION": {
"summary": "A container for function commands", "summary": "A container for function commands.",
"complexity": "Depends on subcommand.", "complexity": "Depends on subcommand.",
"group": "scripting", "group": "scripting",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"GEOADD": { "GEOADD": {
"summary": "Add one or more geospatial items in the geospatial index represented using a sorted set", "summary": "Adds one or more members to a geospatial index. The key is created if it doesn't exist.",
"complexity": "O(log(N)) for each item added, where N is the number of elements in the sorted set.", "complexity": "O(log(N)) for each item added, where N is the number of elements in the sorted set.",
"group": "geo", "group": "geo",
"since": "3.2.0", "since": "3.2.0",
......
{ {
"GEODIST": { "GEODIST": {
"summary": "Returns the distance between two members of a geospatial index", "summary": "Returns the distance between two members of a geospatial index.",
"complexity": "O(log(N))", "complexity": "O(log(N))",
"group": "geo", "group": "geo",
"since": "3.2.0", "since": "3.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