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

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

parents a08686a5 e55568ed
{ {
"ENCODING": { "ENCODING": {
"summary": "Inspect the internal encoding of a Redis object", "summary": "Returns the internal encoding of a Redis object.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "generic", "group": "generic",
"since": "2.2.3", "since": "2.2.3",
......
{ {
"FREQ": { "FREQ": {
"summary": "Get the logarithmic access frequency counter of a Redis object", "summary": "Returns the logarithmic access frequency counter of a Redis object.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "generic", "group": "generic",
"since": "4.0.0", "since": "4.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": "generic", "group": "generic",
"since": "6.2.0", "since": "6.2.0",
......
{ {
"IDLETIME": { "IDLETIME": {
"summary": "Get the time since a Redis object was last accessed", "summary": "Returns the time since the last access to a Redis object.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "generic", "group": "generic",
"since": "2.2.3", "since": "2.2.3",
......
{ {
"REFCOUNT": { "REFCOUNT": {
"summary": "Get the number of references to the value of the key", "summary": "Returns the reference count of a value of a key.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "generic", "group": "generic",
"since": "2.2.3", "since": "2.2.3",
......
{ {
"OBJECT": { "OBJECT": {
"summary": "A container for object introspection commands", "summary": "A container for object introspection commands.",
"complexity": "Depends on subcommand.", "complexity": "Depends on subcommand.",
"group": "generic", "group": "generic",
"since": "2.2.3", "since": "2.2.3",
......
{ {
"PERSIST": { "PERSIST": {
"summary": "Remove the expiration from a key", "summary": "Removes the expiration time of a key.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "generic", "group": "generic",
"since": "2.2.0", "since": "2.2.0",
......
{ {
"PEXPIRE": { "PEXPIRE": {
"summary": "Set a key's time to live in milliseconds", "summary": "Sets the expiration time of a key in milliseconds.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "generic", "group": "generic",
"since": "2.6.0", "since": "2.6.0",
......
{ {
"PEXPIREAT": { "PEXPIREAT": {
"summary": "Set the expiration for a key as a UNIX timestamp specified in milliseconds", "summary": "Sets the expiration time of a key to a Unix milliseconds timestamp.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "generic", "group": "generic",
"since": "2.6.0", "since": "2.6.0",
......
{ {
"PEXPIRETIME": { "PEXPIRETIME": {
"summary": "Get the expiration Unix timestamp for a key in milliseconds", "summary": "Returns the expiration time of a key as a Unix milliseconds timestamp.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "generic", "group": "generic",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"PFADD": { "PFADD": {
"summary": "Adds the specified elements to the specified HyperLogLog.", "summary": "Adds elements to a HyperLogLog key. Creates the key if it doesn't exist.",
"complexity": "O(1) to add every element.", "complexity": "O(1) to add every element.",
"group": "hyperloglog", "group": "hyperloglog",
"since": "2.8.9", "since": "2.8.9",
......
{ {
"PFCOUNT": { "PFCOUNT": {
"summary": "Return the approximated cardinality of the set(s) observed by the HyperLogLog at key(s).", "summary": "Returns the approximated cardinality of the set(s) observed by the HyperLogLog key(s).",
"complexity": "O(1) with a very small average constant time when called with a single key. O(N) with N being the number of keys, and much bigger constant times, when called with multiple keys.", "complexity": "O(1) with a very small average constant time when called with a single key. O(N) with N being the number of keys, and much bigger constant times, when called with multiple keys.",
"group": "hyperloglog", "group": "hyperloglog",
"since": "2.8.9", "since": "2.8.9",
......
{ {
"PFDEBUG": { "PFDEBUG": {
"summary": "Internal commands for debugging HyperLogLog values", "summary": "Internal commands for debugging HyperLogLog values.",
"complexity": "N/A", "complexity": "N/A",
"group": "hyperloglog", "group": "hyperloglog",
"since": "2.8.9", "since": "2.8.9",
......
{ {
"PFMERGE": { "PFMERGE": {
"summary": "Merge N different HyperLogLogs into a single one.", "summary": "Merges one or more HyperLogLog values into a single key.",
"complexity": "O(N) to merge N HyperLogLogs, but with high constant times.", "complexity": "O(N) to merge N HyperLogLogs, but with high constant times.",
"group": "hyperloglog", "group": "hyperloglog",
"since": "2.8.9", "since": "2.8.9",
......
{ {
"PFSELFTEST": { "PFSELFTEST": {
"summary": "An internal command for testing HyperLogLog values", "summary": "An internal command for testing HyperLogLog values.",
"complexity": "N/A", "complexity": "N/A",
"group": "hyperloglog", "group": "hyperloglog",
"since": "2.8.9", "since": "2.8.9",
......
{ {
"PING": { "PING": {
"summary": "Ping the server", "summary": "Returns the server's liveliness response.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "connection", "group": "connection",
"since": "1.0.0", "since": "1.0.0",
......
{ {
"PSETEX": { "PSETEX": {
"summary": "Set the value and expiration in milliseconds of a key", "summary": "Sets both string value and expiration time in milliseconds of a key. The key is created if it doesn't exist.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "string", "group": "string",
"since": "2.6.0", "since": "2.6.0",
......
{ {
"PSUBSCRIBE": { "PSUBSCRIBE": {
"summary": "Listen for messages published to channels matching the given patterns", "summary": "Listens for messages published to channels that match one or more patterns.",
"complexity": "O(N) where N is the number of patterns the client is already subscribed to.", "complexity": "O(N) where N is the number of patterns the client is already subscribed to.",
"group": "pubsub", "group": "pubsub",
"since": "2.0.0", "since": "2.0.0",
......
{ {
"PSYNC": { "PSYNC": {
"summary": "Internal command used for replication", "summary": "An internal command used in replication.",
"group": "server", "group": "server",
"since": "2.8.0", "since": "2.8.0",
"arity": -3, "arity": -3,
......
{ {
"PTTL": { "PTTL": {
"summary": "Get the time to live for a key in milliseconds", "summary": "Returns the expiration time in milliseconds of a key.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "generic", "group": "generic",
"since": "2.6.0", "since": "2.6.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