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

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

parents a08686a5 e55568ed
{
"ENCODING": {
"summary": "Inspect the internal encoding of a Redis object",
"summary": "Returns the internal encoding of a Redis object.",
"complexity": "O(1)",
"group": "generic",
"since": "2.2.3",
......
{
"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)",
"group": "generic",
"since": "4.0.0",
......
{
"HELP": {
"summary": "Show helpful text about the different subcommands",
"summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)",
"group": "generic",
"since": "6.2.0",
......
{
"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)",
"group": "generic",
"since": "2.2.3",
......
{
"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)",
"group": "generic",
"since": "2.2.3",
......
{
"OBJECT": {
"summary": "A container for object introspection commands",
"summary": "A container for object introspection commands.",
"complexity": "Depends on subcommand.",
"group": "generic",
"since": "2.2.3",
......
{
"PERSIST": {
"summary": "Remove the expiration from a key",
"summary": "Removes the expiration time of a key.",
"complexity": "O(1)",
"group": "generic",
"since": "2.2.0",
......
{
"PEXPIRE": {
"summary": "Set a key's time to live in milliseconds",
"summary": "Sets the expiration time of a key in milliseconds.",
"complexity": "O(1)",
"group": "generic",
"since": "2.6.0",
......
{
"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)",
"group": "generic",
"since": "2.6.0",
......
{
"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)",
"group": "generic",
"since": "7.0.0",
......
{
"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.",
"group": "hyperloglog",
"since": "2.8.9",
......
{
"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.",
"group": "hyperloglog",
"since": "2.8.9",
......
{
"PFDEBUG": {
"summary": "Internal commands for debugging HyperLogLog values",
"summary": "Internal commands for debugging HyperLogLog values.",
"complexity": "N/A",
"group": "hyperloglog",
"since": "2.8.9",
......
{
"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.",
"group": "hyperloglog",
"since": "2.8.9",
......
{
"PFSELFTEST": {
"summary": "An internal command for testing HyperLogLog values",
"summary": "An internal command for testing HyperLogLog values.",
"complexity": "N/A",
"group": "hyperloglog",
"since": "2.8.9",
......
{
"PING": {
"summary": "Ping the server",
"summary": "Returns the server's liveliness response.",
"complexity": "O(1)",
"group": "connection",
"since": "1.0.0",
......
{
"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)",
"group": "string",
"since": "2.6.0",
......
{
"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.",
"group": "pubsub",
"since": "2.0.0",
......
{
"PSYNC": {
"summary": "Internal command used for replication",
"summary": "An internal command used in replication.",
"group": "server",
"since": "2.8.0",
"arity": -3,
......
{
"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)",
"group": "generic",
"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