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

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

parents a08686a5 e55568ed
{ {
"LOG": { "LOG": {
"summary": "List latest events denied because of ACLs in place", "summary": "Lists recent security events generated due to ACL rules.",
"complexity": "O(N) with N being the number of entries shown.", "complexity": "O(N) with N being the number of entries shown.",
"group": "server", "group": "server",
"since": "6.0.0", "since": "6.0.0",
......
{ {
"SAVE": { "SAVE": {
"summary": "Save the current ACL rules in the configured ACL file", "summary": "Saves the effective ACL rules in the configured ACL file.",
"complexity": "O(N). Where N is the number of configured users.", "complexity": "O(N). Where N is the number of configured users.",
"group": "server", "group": "server",
"since": "6.0.0", "since": "6.0.0",
......
{ {
"SETUSER": { "SETUSER": {
"summary": "Modify or create the rules for a specific ACL user", "summary": "Creates and modifies an ACL user and its rules.",
"complexity": "O(N). Where N is the number of rules provided.", "complexity": "O(N). Where N is the number of rules provided.",
"group": "server", "group": "server",
"since": "6.0.0", "since": "6.0.0",
......
{ {
"USERS": { "USERS": {
"summary": "List the username of all the configured ACL rules", "summary": "Lists all ACL users.",
"complexity": "O(N). Where N is the number of configured users.", "complexity": "O(N). Where N is the number of configured users.",
"group": "server", "group": "server",
"since": "6.0.0", "since": "6.0.0",
......
{ {
"WHOAMI": { "WHOAMI": {
"summary": "Return the name of the user associated to the current connection", "summary": "Returns the authenticated username of the current connection.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "6.0.0", "since": "6.0.0",
......
{ {
"ACL": { "ACL": {
"summary": "A container for Access List Control commands ", "summary": "A container for Access List Control commands.",
"complexity": "Depends on subcommand.", "complexity": "Depends on subcommand.",
"group": "server", "group": "server",
"since": "6.0.0", "since": "6.0.0",
......
{ {
"APPEND": { "APPEND": {
"summary": "Append a value to a key", "summary": "Appends a string to the value of a key. Creates the key if it doesn't exist.",
"complexity": "O(1). The amortized time complexity is O(1) assuming the appended value is small and the already present value is of any size, since the dynamic string library used by Redis will double the free space available on every reallocation.", "complexity": "O(1). The amortized time complexity is O(1) assuming the appended value is small and the already present value is of any size, since the dynamic string library used by Redis will double the free space available on every reallocation.",
"group": "string", "group": "string",
"since": "2.0.0", "since": "2.0.0",
......
{ {
"ASKING": { "ASKING": {
"summary": "Sent by cluster clients after an -ASK redirect", "summary": "Signals that a cluster client is following an -ASK redirect.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"AUTH": { "AUTH": {
"summary": "Authenticate to the server", "summary": "Authenticates the connection.",
"complexity": "O(N) where N is the number of passwords defined for the user", "complexity": "O(N) where N is the number of passwords defined for the user",
"group": "connection", "group": "connection",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"BGREWRITEAOF": { "BGREWRITEAOF": {
"summary": "Asynchronously rewrite the append-only file", "summary": "Asynchronously rewrites the append-only file to disk.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"BGSAVE": { "BGSAVE": {
"summary": "Asynchronously save the dataset to disk", "summary": "Asynchronously saves the database(s) to disk.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"BITCOUNT": { "BITCOUNT": {
"summary": "Count set bits in a string", "summary": "Counts the number of set bits (population counting) in a string.",
"complexity": "O(N)", "complexity": "O(N)",
"group": "bitmap", "group": "bitmap",
"since": "2.6.0", "since": "2.6.0",
......
{ {
"BITFIELD": { "BITFIELD": {
"summary": "Perform arbitrary bitfield integer operations on strings", "summary": "Performs arbitrary bitfield integer operations on strings.",
"complexity": "O(1) for each subcommand specified", "complexity": "O(1) for each subcommand specified",
"group": "bitmap", "group": "bitmap",
"since": "3.2.0", "since": "3.2.0",
......
{ {
"BITFIELD_RO": { "BITFIELD_RO": {
"summary": "Perform arbitrary bitfield integer operations on strings. Read-only variant of BITFIELD", "summary": "Performs arbitrary read-only bitfield integer operations on strings.",
"complexity": "O(1) for each subcommand specified", "complexity": "O(1) for each subcommand specified",
"group": "bitmap", "group": "bitmap",
"since": "6.0.0", "since": "6.0.0",
......
{ {
"BITOP": { "BITOP": {
"summary": "Perform bitwise operations between strings", "summary": "Performs bitwise operations on multiple strings, and stores the result.",
"complexity": "O(N)", "complexity": "O(N)",
"group": "bitmap", "group": "bitmap",
"since": "2.6.0", "since": "2.6.0",
......
{ {
"BITPOS": { "BITPOS": {
"summary": "Find first bit set or clear in a string", "summary": "Finds the first set (1) or clear (0) bit in a string.",
"complexity": "O(N)", "complexity": "O(N)",
"group": "bitmap", "group": "bitmap",
"since": "2.8.7", "since": "2.8.7",
......
{ {
"BLMOVE": { "BLMOVE": {
"summary": "Pop an element from a list, push it to another list and return it; or block until one is available", "summary": "Pops an element from a list, pushes it to another list and returns it. Blocks until an element is available otherwise. Deletes the list if the last element was moved.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "list", "group": "list",
"since": "6.2.0", "since": "6.2.0",
......
{ {
"BLMPOP": { "BLMPOP": {
"summary": "Pop elements from a list, or block until one is available", "summary": "Pops the first element from one of multiple lists. Blocks until an element is available otherwise. Deletes the list if the last element was popped.",
"complexity": "O(N+M) where N is the number of provided keys and M is the number of elements returned.", "complexity": "O(N+M) where N is the number of provided keys and M is the number of elements returned.",
"group": "list", "group": "list",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"BLPOP": { "BLPOP": {
"summary": "Remove and get the first element in a list, or block until one is available", "summary": "Removes and returns the first element in a list. Blocks until an element is available otherwise. Deletes the list if the last element was popped.",
"complexity": "O(N) where N is the number of provided keys.", "complexity": "O(N) where N is the number of provided keys.",
"group": "list", "group": "list",
"since": "2.0.0", "since": "2.0.0",
......
{ {
"BRPOP": { "BRPOP": {
"summary": "Remove and get the last element in a list, or block until one is available", "summary": "Removes and returns the last element in a list. Blocks until an element is available otherwise. Deletes the list if the last element was popped.",
"complexity": "O(N) where N is the number of provided keys.", "complexity": "O(N) where N is the number of provided keys.",
"group": "list", "group": "list",
"since": "2.0.0", "since": "2.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