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

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

parents a08686a5 e55568ed
{
"ROLE": {
"summary": "Return the role of the instance in the context of replication",
"summary": "Returns the replication role.",
"complexity": "O(1)",
"group": "server",
"since": "2.8.12",
......
{
"RPOP": {
"summary": "Remove and get the last elements in a list",
"summary": "Returns and removes the last elements of a list. Deletes the list if the lst element was popped.",
"complexity": "O(N) where N is the number of elements returned",
"group": "list",
"since": "1.0.0",
......
{
"RPOPLPUSH": {
"summary": "Remove the last element in a list, prepend it to another list and return it",
"summary": "Returns the last element of a list after removing and pushing it to another list. Deletes the list if the lst element was popped.",
"complexity": "O(1)",
"group": "list",
"since": "1.2.0",
......
{
"RPUSH": {
"summary": "Append one or multiple elements to a list",
"summary": "Appends one or more elements to a list. Creates the key if it doesn't exist.",
"complexity": "O(1) for each element added, so O(N) to add N elements when the command is called with multiple arguments.",
"group": "list",
"since": "1.0.0",
......
{
"RPUSHX": {
"summary": "Append an element to a list, only if the list exists",
"summary": "Appends an element to a list only when the list exists.",
"complexity": "O(1) for each element added, so O(N) to add N elements when the command is called with multiple arguments.",
"group": "list",
"since": "2.2.0",
......
{
"SADD": {
"summary": "Add one or more members to a set",
"summary": "Adds one or more members to a set. Creates the key if it doesn't exist.",
"complexity": "O(1) for each element added, so O(N) to add N elements when the command is called with multiple arguments.",
"group": "set",
"since": "1.0.0",
......
{
"SAVE": {
"summary": "Synchronously save the dataset to disk",
"summary": "Synchronously saves the database(s) to disk.",
"complexity": "O(N) where N is the total number of keys in all databases",
"group": "server",
"since": "1.0.0",
......
{
"SCAN": {
"summary": "Incrementally iterate the keys space",
"summary": "Iterates over the key names in the database.",
"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": "generic",
"since": "2.8.0",
......
{
"SCARD": {
"summary": "Get the number of members in a set",
"summary": "Returns the number of members in a set.",
"complexity": "O(1)",
"group": "set",
"since": "1.0.0",
......
{
"DEBUG": {
"summary": "Set the debug mode for executed scripts.",
"summary": "Sets the debug mode of server-side Lua scripts.",
"complexity": "O(1)",
"group": "scripting",
"since": "3.2.0",
......
{
"EXISTS": {
"summary": "Check existence of scripts in the script cache.",
"summary": "Determines whether server-side Lua scripts exist in the script cache.",
"complexity": "O(N) with N being the number of scripts to check (so checking a single script is an O(1) operation).",
"group": "scripting",
"since": "2.6.0",
......
{
"FLUSH": {
"summary": "Remove all the scripts from the script cache.",
"summary": "Removes all server-side Lua scripts from the script cache.",
"complexity": "O(N) with N being the number of scripts in cache",
"group": "scripting",
"since": "2.6.0",
......
{
"HELP": {
"summary": "Show helpful text about the different subcommands",
"summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)",
"group": "scripting",
"since": "5.0.0",
......
{
"KILL": {
"summary": "Kill the script currently in execution.",
"summary": "Terminates a server-side Lua script during execution.",
"complexity": "O(1)",
"group": "scripting",
"since": "2.6.0",
......
{
"LOAD": {
"summary": "Load the specified Lua script into the script cache.",
"summary": "Loads a server-side Lua script to the script cache.",
"complexity": "O(N) with N being the length in bytes of the script body.",
"group": "scripting",
"since": "2.6.0",
......
{
"SCRIPT": {
"summary": "A container for Lua scripts management commands",
"summary": "A container for Lua scripts management commands.",
"complexity": "Depends on subcommand.",
"group": "scripting",
"since": "2.6.0",
......
{
"SDIFF": {
"summary": "Subtract multiple sets",
"summary": "Returns the difference of multiple sets.",
"complexity": "O(N) where N is the total number of elements in all given sets.",
"group": "set",
"since": "1.0.0",
......
{
"SDIFFSTORE": {
"summary": "Subtract multiple sets and store the resulting set in a key",
"summary": "Stores the difference of multiple sets in a key.",
"complexity": "O(N) where N is the total number of elements in all given sets.",
"group": "set",
"since": "1.0.0",
......
{
"SELECT": {
"summary": "Change the selected database for the current connection",
"summary": "Changes the selected database.",
"complexity": "O(1)",
"group": "connection",
"since": "1.0.0",
......
{
"CKQUORUM": {
"summary": "Check for a Sentinel quorum",
"summary": "Checks for a Redis Sentinel quorum.",
"group": "sentinel",
"since": "2.8.4",
"arity": 3,
......
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