Strings

📄️ APPEND Append a value to a key

📄️ BITCOUNT Count set bits in a string

📄️ BITFIELD Perform arbitrary bitfield integer operations on strings

📄️ BITFIELD_RO Perform arbitrary bitfield integer operations on strings. Read-only variant of BITFIELD

📄️ BITOP Perform bitwise operations between strings

📄️ BITPOS Find first bit set or clear in a string

📄️ DECR Decrement the integer value of a key by one

📄️ DECRBY Decrement the integer value of a key by the given number

📄️ GET Get the value of a key

📄️ GETBIT Returns the bit value at offset in the string value stored at key

📄️ GETDEL Get the value of a key and delete the key

📄️ GETEX Get the value of a key and optionally set its expiration

📄️ GETRANGE Get a substring of the string stored at a key

📄️ GETSET Set the string value of a key and return its old value

📄️ INCR Increment the integer value of a key by one

📄️ INCRBY Increment the integer value of a key by the given amount

📄️ INCRBYFLOAT Increment the float value of a key by the given amount

📄️ MGET Get the values of all the given keys

📄️ MSET Set multiple keys to multiple values

📄️ MSETNX Set multiple keys to multiple values, only if none of the keys exist

📄️ PSETEX Set the value and expiration in milliseconds of a key

📄️ SET Set the string value of a key

📄️ SETBIT Sets or clears the bit at offset in the string value stored at key

📄️ SETEX Set the value and expiration of a key

📄️ SETNX Set the value of a key, only if the key does not exist

📄️ SETRANGE Overwrite part of a string at key starting at the specified offset

📄️ STRLEN Get the length of the value stored in a key

📄️ SUBSTR Get a substring of the string stored at a key