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

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

parents a08686a5 e55568ed
{
"EXPIRE": {
"summary": "Set a key's time to live in seconds",
"summary": "Sets the expiration time of a key in seconds.",
"complexity": "O(1)",
"group": "generic",
"since": "1.0.0",
......
{
"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)",
"group": "generic",
"since": "1.2.0",
......
{
"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)",
"group": "generic",
"since": "7.0.0",
......
{
"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)",
"group": "server",
"since": "6.2.0",
......
{
"FCALL": {
"summary": "Invoke a function",
"summary": "Invokes a function.",
"complexity": "Depends on the function that is executed.",
"group": "scripting",
"since": "7.0.0",
......
{
"FCALL_RO": {
"summary": "Invoke a read-only function",
"summary": "Invokes a read-only function.",
"complexity": "Depends on the function that is executed.",
"group": "scripting",
"since": "7.0.0",
......
{
"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",
"group": "server",
"since": "1.0.0",
......
{
"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",
"group": "server",
"since": "1.0.0",
......
{
"DELETE": {
"summary": "Delete a function by name",
"summary": "Deletes a library and its functions.",
"complexity": "O(1)",
"group": "scripting",
"since": "7.0.0",
......
{
"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",
"group": "scripting",
"since": "7.0.0",
......
{
"FLUSH": {
"summary": "Deleting all functions",
"summary": "Deletes all libraries and functions.",
"complexity": "O(N) where N is the number of functions deleted",
"group": "scripting",
"since": "7.0.0",
......
{
"HELP": {
"summary": "Show helpful text about the different subcommands",
"summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)",
"group": "scripting",
"since": "7.0.0",
......
{
"KILL": {
"summary": "Kill the function currently in execution.",
"summary": "Terminates a function during execution.",
"complexity": "O(1)",
"group": "scripting",
"since": "7.0.0",
......
{
"LIST": {
"summary": "List information about all the functions",
"summary": "Returns information about all libraries.",
"complexity": "O(N) where N is the number of functions",
"group": "scripting",
"since": "7.0.0",
......
{
"LOAD": {
"summary": "Create a function with the given arguments (name, code, description)",
"summary": "Creates a library.",
"complexity": "O(1) (considering compilation time is redundant)",
"group": "scripting",
"since": "7.0.0",
......
{
"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",
"group": "scripting",
"since": "7.0.0",
......
{
"STATS": {
"summary": "Return information about the function currently running (name, description, duration)",
"summary": "Returns information about a function during execution.",
"complexity": "O(1)",
"group": "scripting",
"since": "7.0.0",
......
{
"FUNCTION": {
"summary": "A container for function commands",
"summary": "A container for function commands.",
"complexity": "Depends on subcommand.",
"group": "scripting",
"since": "7.0.0",
......
{
"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.",
"group": "geo",
"since": "3.2.0",
......
{
"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))",
"group": "geo",
"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