Commands

APPEND

Appends a string to the value of a key. Creates the key if it doesn't exist.

Read more

DECR

Decrements the integer value of a key by one. Uses 0 as initial value if the key doesn't exist.

Read more

DECRBY

Decrements a number from the integer value of a key. Uses 0 as initial value if the key doesn't exist.

Read more

GETDEL

Returns the string value of a key after deleting the key.

Read more

GETEX

Returns the string value of a key after setting its expiration time.

Read more

GETRANGE

Returns a substring of the string stored at a key.

Read more

GETSET

Returns the previous string value of a key after setting it to a new value.

Read more

INCR

Increments the integer value of a key by one. Uses 0 as initial value if the key doesn't exist.

Read more

INCRBY

Increments the integer value of a key by a number. Uses 0 as initial value if the key doesn't exist.

Read more

INCRBYFLOAT

Increment the floating point value of a key by a number. Uses 0 as initial value if the key doesn't exist.

Read more

MGET

Atomically returns the string values of one or more keys.

Read more

MSET

Atomically creates or modifies the string values of one or more keys.

Read more

MSETNX

Atomically modifies the string values of one or more keys only when all keys don't exist.

Read more

PSETEX

Sets both string value and expiration time in milliseconds of a key. The key is created if it doesn't exist.

Read more

SET

Sets the string value of a key, ignoring its type. The key is created if it doesn't exist.

Read more

SETEX

Sets the string value and expiration time of a key. Creates the key if it doesn't exist.

Read more

SETNX

Set the string value of a key only when the key doesn't exist.

Read more

SETRANGE

Overwrites a part of a string value with another by an offset. Creates the key if it doesn't exist.

Read more

STRLEN

Returns the length of a string value.

Read more

SUBSTR

Returns a substring from a string value.

Read more