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

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

parents a08686a5 e55568ed
{
"BRPOPLPUSH": {
"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. Block until an element is available otherwise. Deletes the list if the last element was popped.",
"complexity": "O(1)",
"group": "list",
"since": "2.2.0",
......
{
"BZMPOP": {
"summary": "Remove and return members with scores in a sorted set or block until one is available",
"summary": "Removes and returns a member by score from one or more sorted sets. Blocks until a member is available otherwise. Deletes the sorted set if the last element was popped.",
"complexity": "O(K) + O(M*log(N)) where K is the number of provided keys, N being the number of elements in the sorted set, and M being the number of elements popped.",
"group": "sorted_set",
"since": "7.0.0",
......
{
"BZPOPMAX": {
"summary": "Remove and return the member with the highest score from one or more sorted sets, or block until one is available",
"summary": "Removes and returns the member with the highest score from one or more sorted sets. Blocks until a member available otherwise. Deletes the sorted set if the last element was popped.",
"complexity": "O(log(N)) with N being the number of elements in the sorted set.",
"group": "sorted_set",
"since": "5.0.0",
......
{
"BZPOPMIN": {
"summary": "Remove and return the member with the lowest score from one or more sorted sets, or block until one is available",
"summary": "Removes and returns the member with the lowest score from one or more sorted sets. Blocks until a member is available otherwise. Deletes the sorted set if the last element was popped.",
"complexity": "O(log(N)) with N being the number of elements in the sorted set.",
"group": "sorted_set",
"since": "5.0.0",
......
{
"CACHING": {
"summary": "Instruct the server about tracking or not keys in the next request",
"summary": "Instructs the server whether to track the keys in the next request.",
"complexity": "O(1)",
"group": "connection",
"since": "6.0.0",
......
{
"GETNAME": {
"summary": "Get the current connection name",
"summary": "Returns the name of the connection.",
"complexity": "O(1)",
"group": "connection",
"since": "2.6.9",
......
{
"GETREDIR": {
"summary": "Get tracking notifications redirection client ID if any",
"summary": "Returns the client ID to which the connection's tracking notifications are redirected.",
"complexity": "O(1)",
"group": "connection",
"since": "6.0.0",
......
{
"HELP": {
"summary": "Show helpful text about the different subcommands",
"summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)",
"group": "connection",
"since": "5.0.0",
......
{
"ID": {
"summary": "Returns the client ID for the current connection",
"summary": "Returns the unique client ID of the connection.",
"complexity": "O(1)",
"group": "connection",
"since": "5.0.0",
......
{
"INFO": {
"summary": "Returns information about the current client connection.",
"summary": "Returns information about the connection.",
"complexity": "O(1)",
"group": "connection",
"since": "6.2.0",
......
{
"KILL": {
"summary": "Kill the connection of a client",
"summary": "Terminates open connections.",
"complexity": "O(N) where N is the number of client connections",
"group": "connection",
"since": "2.4.0",
......
{
"LIST": {
"summary": "Get the list of client connections",
"summary": "Lists open connections.",
"complexity": "O(N) where N is the number of client connections",
"group": "connection",
"since": "2.4.0",
......
{
"NO-EVICT": {
"summary": "Set client eviction mode for the current connection",
"summary": "Sets the client eviction mode of the connection.",
"complexity": "O(1)",
"group": "connection",
"since": "7.0.0",
......
{
"NO-TOUCH": {
"summary": "Controls whether commands sent by the client will alter the LRU/LFU of the keys they access.",
"summary": "Controls whether commands sent by the client affect the LRU/LFU of accessed keys.",
"complexity": "O(1)",
"group": "connection",
"since": "7.2.0",
......
{
"PAUSE": {
"summary": "Stop processing commands from clients for some time",
"summary": "Suspends commands processing.",
"complexity": "O(1)",
"group": "connection",
"since": "3.0.0",
......
{
"REPLY": {
"summary": "Instruct the server whether to reply to commands",
"summary": "Instructs the server whether to reply to commands.",
"complexity": "O(1)",
"group": "connection",
"since": "3.2.0",
......
{
"SETINFO": {
"summary": "Set client or connection specific info",
"summary": "Sets information specific to the client or connection.",
"complexity": "O(1)",
"group": "connection",
"since": "7.2.0",
......
{
"SETNAME": {
"summary": "Set the current connection name",
"summary": "Sets the connection name.",
"complexity": "O(1)",
"group": "connection",
"since": "2.6.9",
......
{
"TRACKING": {
"summary": "Enable or disable server assisted client side caching support",
"summary": "Controls server-assisted client-side caching for the connection.",
"complexity": "O(1). Some options may introduce additional complexity.",
"group": "connection",
"since": "6.0.0",
......
{
"TRACKINGINFO": {
"summary": "Return information about server assisted client side caching for the current connection",
"summary": "Returns information about server-assisted client-side caching for the connection.",
"complexity": "O(1)",
"group": "connection",
"since": "6.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