Commands

APPEND

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

Learn more →
Read more

DECR

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

Learn more →
Read more

DECRBY

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

Learn more →
Read more

GET

Returns the string value of a key.

Learn more →
Read more

GETDEL

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

Learn more →
Read more

GETEX

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

Learn more →
Read more

GETRANGE

Returns a substring of the string stored at a key.

Learn more →
Read more

GETSET

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

Learn more →
Read more

INCR

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

Learn more →
Read more

INCRBY

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

Learn more →
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.

Learn more →
Read more

LCS

Finds the longest common substring.

Learn more →
Read more

MGET

Atomically returns the string values of one or more keys.

Learn more →
Read more

MSET

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

Learn more →
Read more

MSETNX

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

Learn more →
Read more

PSETEX

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

Learn more →
Read more

SET

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

Learn more →
Read more

SETEX

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

Learn more →
Read more

SETNX

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

Learn more →
Read more

SETRANGE

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

Learn more →
Read more

STRLEN

Returns the length of a string value.

Learn more →
Read more

SUBSTR

Returns a substring from a string value.

Learn more →
Read more