Redis Commands

Core Commands

The following functions can be used to replicate their equivalent Redis command. Generally they can be used as functions on your redis connection. For the simplest example, see below:

Getting and settings data in redis:

import redis
r = redis.Redis(decode_responses=True)
r.set('mykey', 'thevalueofmykey')
r.get('mykey')
class redis.commands.core.CoreCommands[source]

A class containing all of the implemented redis commands. This class is to be used as a mixin for synchronous Redis clients.

acl_cat(category: Optional[str] = None, **kwargs) → Union[Awaitable, Any]

Returns a list of categories or commands within a category.

If category is not supplied, returns a list of all categories. If category is supplied, returns a list of all commands within that category.

For more information check https://redis.io/commands/acl-cat

acl_deluser(*username, **kwargs) → Union[Awaitable, Any]

Delete the ACL for the specified ``username``s

For more information check https://redis.io/commands/acl-deluser

acl_dryrun(username, *args, **kwargs)

Simulate the execution of a given command by a given username.

For more information check https://redis.io/commands/acl-dryrun

acl_genpass(bits: Optional[int] = None, **kwargs) → Union[Awaitable, Any]

Generate a random password value. If bits is supplied then use this number of bits, rounded to the next multiple of 4. See: https://redis.io/commands/acl-genpass

acl_getuser(username: str, **kwargs) → Union[Awaitable, Any]

Get the ACL details for the specified username.

If username does not exist, return None

For more information check https://redis.io/commands/acl-getuser

acl_help(**kwargs) → Union[Awaitable, Any]

The ACL HELP command returns helpful text describing the different subcommands.

For more information check https://redis.io/commands/acl-help

acl_list(**kwargs) → Union[Awaitable, Any]

Return a list of all ACLs on the server

For more information check https://redis.io/commands/acl-list

acl_load(**kwargs) → Union[Awaitable, Any]

Load ACL rules from the configured aclfile.

Note that the server must be configured with the aclfile directive to be able to load ACL rules from an aclfile.

For more information check https://redis.io/commands/acl-load

acl_log(count: Optional[int] = None, **kwargs) → Union[Awaitable, Any]

Get ACL logs as a list. :param int count: Get logs[0:count]. :rtype: List.

For more information check https://redis.io/commands/acl-log

acl_log_reset(**kwargs) → Union[Awaitable, Any]

Reset ACL logs. :rtype: Boolean.

For more information check https://redis.io/commands/acl-log

acl_save(**kwargs) → Union[Awaitable, Any]

Save ACL rules to the configured aclfile.

Note that the server must be configured with the aclfile directive to be able to save ACL rules to an aclfile.

For more information check https://redis.io/commands/acl-save

acl_setuser(username: str, enabled: bool = False, nopass: bool = False, passwords: Union[str, Iterable[str], None] = None, hashed_passwords: Union[str, Iterable[str], None] = None, categories: Optional[Iterable[str]] = None, commands: Optional[Iterable[str]] = None, keys: Optional[Iterable[Union[bytes, str, memoryview]]] = None, reset: bool = False, reset_keys: bool = False, reset_passwords: bool = False, **kwargs) → Union[Awaitable, Any]

Create or update an ACL user.

Create or update the ACL for username. If the user already exists, the existing ACL is completely overwritten and replaced with the specified values.

enabled is a boolean indicating whether the user should be allowed to authenticate or not. Defaults to False.

nopass is a boolean indicating whether the can authenticate without a password. This cannot be True if passwords are also specified.

passwords if specified is a list of plain text passwords to add to or remove from the user. Each password must be prefixed with a ‘+’ to add or a ‘-’ to remove. For convenience, the value of passwords can be a simple prefixed string when adding or removing a single password.

hashed_passwords if specified is a list of SHA-256 hashed passwords to add to or remove from the user. Each hashed password must be prefixed with a ‘+’ to add or a ‘-’ to remove. For convenience, the value of hashed_passwords can be a simple prefixed string when adding or removing a single password.

categories if specified is a list of strings representing category permissions. Each string must be prefixed with either a ‘+’ to add the category permission or a ‘-’ to remove the category permission.

commands if specified is a list of strings representing command permissions. Each string must be prefixed with either a ‘+’ to add the command permission or a ‘-’ to remove the command permission.

keys if specified is a list of key patterns to grant the user access to. Keys patterns allow ‘*’ to support wildcard matching. For example, ‘*’ grants access to all keys while ‘cache:*’ grants access to all keys that are prefixed with ‘cache:’. keys should not be prefixed with a ‘~’.

reset is a boolean indicating whether the user should be fully reset prior to applying the new ACL. Setting this to True will remove all existing passwords, flags and privileges from the user and then apply the specified rules. If this is False, the user’s existing passwords, flags and privileges will be kept and any new specified rules will be applied on top.

reset_keys is a boolean indicating whether the user’s key permissions should be reset prior to applying any new key permissions specified in keys. If this is False, the user’s existing key permissions will be kept and any new specified key permissions will be applied on top.

reset_passwords is a boolean indicating whether to remove all existing passwords and the ‘nopass’ flag from the user prior to applying any new passwords specified in ‘passwords’ or ‘hashed_passwords’. If this is False, the user’s existing passwords and ‘nopass’ status will be kept and any new specified passwords or hashed_passwords will be applied on top.

For more information check https://redis.io/commands/acl-setuser

acl_users(**kwargs) → Union[Awaitable, Any]

Returns a list of all registered users on the server.

For more information check https://redis.io/commands/acl-users

acl_whoami(**kwargs) → Union[Awaitable, Any]

Get the username for the current connection

For more information check https://redis.io/commands/acl-whoami

append(key: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Appends the string value to the value at key. If key doesn’t already exist, create it with a value of value. Returns the new length of the value at key.

For more information check https://redis.io/commands/append

auth(password, username=None, **kwargs)

Authenticates the user. If you do not pass username, Redis will try to authenticate for the “default” user. If you do pass username, it will authenticate for the given user. For more information check https://redis.io/commands/auth

bgrewriteaof(**kwargs)

Tell the Redis server to rewrite the AOF file from data in memory.

For more information check https://redis.io/commands/bgrewriteaof

bgsave(schedule: bool = True, **kwargs) → Union[Awaitable, Any]

Tell the Redis server to save its data to disk. Unlike save(), this method is asynchronous and returns immediately.

For more information check https://redis.io/commands/bgsave

bitcount(key: Union[bytes, str, memoryview], start: Optional[int] = None, end: Optional[int] = None) → Union[Awaitable, Any]

Returns the count of set bits in the value of key. Optional start and end parameters indicate which bytes to consider

For more information check https://redis.io/commands/bitcount

bitfield(key: Union[bytes, str, memoryview], default_overflow: Optional[str] = None) → redis.commands.core.BitFieldOperation

Return a BitFieldOperation instance to conveniently construct one or more bitfield operations on key.

For more information check https://redis.io/commands/bitfield

bitop(operation: str, dest: Union[bytes, str, memoryview], *keys) → Union[Awaitable, Any]

Perform a bitwise operation using operation between keys and store the result in dest.

For more information check https://redis.io/commands/bitop

bitpos(key: Union[bytes, str, memoryview], bit: int, start: Optional[int] = None, end: Optional[int] = None) → Union[Awaitable, Any]

Return the position of the first bit set to 1 or 0 in a string. start and end defines search range. The range is interpreted as a range of bytes and not a range of bits, so start=0 and end=2 means to look at the first three bytes.

For more information check https://redis.io/commands/bitpos

blmove(first_list: str, second_list: str, timeout: int, src: str = 'LEFT', dest: str = 'RIGHT') → Union[Awaitable, Any]

Blocking version of lmove.

For more information check https://redis.io/commands/blmove

blmpop(timeout: float, numkeys: int, *args, direction: str, count: Optional[int] = 1) → Optional[list]

Pop count values (default 1) from first non-empty in the list of provided key names.

When all lists are empty this command blocks the connection until another client pushes to it or until the timeout, timeout of 0 blocks indefinitely

For more information check https://redis.io/commands/blmpop

blpop(keys: List, timeout: Optional[int] = 0) → Union[Awaitable[list], list]

LPOP a value off of the first non-empty list named in the keys list.

If none of the lists in keys has a value to LPOP, then block for timeout seconds, or until a value gets pushed on to one of the lists.

If timeout is 0, then block indefinitely.

For more information check https://redis.io/commands/blpop

brpop(keys: List, timeout: Optional[int] = 0) → Union[Awaitable[list], list]

RPOP a value off of the first non-empty list named in the keys list.

If none of the lists in keys has a value to RPOP, then block for timeout seconds, or until a value gets pushed on to one of the lists.

If timeout is 0, then block indefinitely.

For more information check https://redis.io/commands/brpop

brpoplpush(src: str, dst: str, timeout: Optional[int] = 0) → Union[Awaitable[Optional[str]], str, None]

Pop a value off the tail of src, push it on the head of dst and then return it.

This command blocks until a value is in src or until timeout seconds elapse, whichever is first. A timeout value of 0 blocks forever.

For more information check https://redis.io/commands/brpoplpush

bzmpop(timeout: float, numkeys: int, keys: List[str], min: Optional[bool] = False, max: Optional[bool] = False, count: Optional[int] = 1) → Optional[list]

Pop count values (default 1) off of the first non-empty sorted set named in the keys list.

If none of the sorted sets in keys has a value to pop, then block for timeout seconds, or until a member gets added to one of the sorted sets.

If timeout is 0, then block indefinitely.

For more information check https://redis.io/commands/bzmpop

bzpopmax(keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]], timeout: Union[int, float, bytes, str, memoryview] = 0) → Union[Awaitable, Any]

ZPOPMAX a value off of the first non-empty sorted set named in the keys list.

If none of the sorted sets in keys has a value to ZPOPMAX, then block for timeout seconds, or until a member gets added to one of the sorted sets.

If timeout is 0, then block indefinitely.

For more information check https://redis.io/commands/bzpopmax

bzpopmin(keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]], timeout: Union[int, float, bytes, str, memoryview] = 0) → Union[Awaitable, Any]

ZPOPMIN a value off of the first non-empty sorted set named in the keys list.

If none of the sorted sets in keys has a value to ZPOPMIN, then block for timeout seconds, or until a member gets added to one of the sorted sets.

If timeout is 0, then block indefinitely.

For more information check https://redis.io/commands/bzpopmin

client_getname(**kwargs) → Union[Awaitable, Any]

Returns the current connection name

For more information check https://redis.io/commands/client-getname

client_getredir(**kwargs) → Union[Awaitable, Any]

Returns the ID (an integer) of the client to whom we are redirecting tracking notifications.

see: https://redis.io/commands/client-getredir

client_id(**kwargs) → Union[Awaitable, Any]

Returns the current connection id

For more information check https://redis.io/commands/client-id

client_info(**kwargs) → Union[Awaitable, Any]

Returns information and statistics about the current client connection.

For more information check https://redis.io/commands/client-info

client_kill(address: str, **kwargs) → Union[Awaitable, Any]

Disconnects the client at address (ip:port)

For more information check https://redis.io/commands/client-kill

client_kill_filter(_id: Optional[str] = None, _type: Optional[str] = None, addr: Optional[str] = None, skipme: Optional[bool] = None, laddr: Optional[bool] = None, user: str = None, **kwargs) → Union[Awaitable, Any]

Disconnects client(s) using a variety of filter options :param _id: Kills a client by its unique ID field :param _type: Kills a client by type where type is one of ‘normal’, ‘master’, ‘slave’ or ‘pubsub’ :param addr: Kills a client by its ‘address:port’ :param skipme: If True, then the client calling the command will not get killed even if it is identified by one of the filter options. If skipme is not provided, the server defaults to skipme=True :param laddr: Kills a client by its ‘local (bind) address:port’ :param user: Kills a client for a specific user name

client_list(_type: Optional[str] = None, client_id: List[Union[bytes, memoryview, str, int, float]] = [], **kwargs) → Union[Awaitable, Any]

Returns a list of currently connected clients. If type of client specified, only that type will be returned. :param _type: optional. one of the client types (normal, master,

replica, pubsub)
Parameters:client_id – optional. a list of client ids

For more information check https://redis.io/commands/client-list

client_no_evict(mode: str) → Union[Awaitable[str], str]

Sets the client eviction mode for the current connection.

For more information check https://redis.io/commands/client-no-evict

client_pause(timeout: int, all: bool = True, **kwargs) → Union[Awaitable, Any]

Suspend all the Redis clients for the specified amount of time :param timeout: milliseconds to pause clients

For more information check https://redis.io/commands/client-pause :param all: If true (default) all client commands are blocked.

otherwise, clients are only blocked if they attempt to execute a write command. For the WRITE mode, some commands have special behavior:

EVAL/EVALSHA: Will block client for all scripts. PUBLISH: Will block client. PFCOUNT: Will block client. WAIT: Acknowledgments will be delayed, so this command will appear blocked.
client_reply(reply: Union[Literal[ON], Literal[OFF], Literal[SKIP]], **kwargs) → Union[Awaitable, Any]

Enable and disable redis server replies. reply Must be ON OFF or SKIP,

ON - The default most with server replies to commands OFF - Disable server responses to commands SKIP - Skip the response of the immediately following command.

Note: When setting OFF or SKIP replies, you will need a client object with a timeout specified in seconds, and will need to catch the TimeoutError.

The test_client_reply unit test illustrates this, and conftest.py has a client with a timeout.

See https://redis.io/commands/client-reply

client_setname(name: str, **kwargs) → Union[Awaitable, Any]

Sets the current connection name

For more information check https://redis.io/commands/client-setname

client_tracking(on: bool = True, clientid: Optional[int] = None, prefix: Sequence[Union[bytes, str, memoryview]] = [], bcast: bool = False, optin: bool = False, optout: bool = False, noloop: bool = False, **kwargs) → Union[Awaitable, Any]

Enables the tracking feature of the Redis server, that is used for server assisted client side caching.

on indicate for tracking on or tracking off. The dafualt is on.

clientid send invalidation messages to the connection with the specified ID.

bcast enable tracking in broadcasting mode. In this mode invalidation messages are reported for all the prefixes specified, regardless of the keys requested by the connection.

optin when broadcasting is NOT active, normally don’t track keys in read only commands, unless they are called immediately after a CLIENT CACHING yes command.

optout when broadcasting is NOT active, normally track keys in read only commands, unless they are called immediately after a CLIENT CACHING no command.

noloop don’t send notifications about keys modified by this connection itself.

prefix for broadcasting, register a given key prefix, so that notifications will be provided only for keys starting with this string.

See https://redis.io/commands/client-tracking

client_tracking_off(clientid: Optional[int] = None, prefix: Sequence[Union[bytes, str, memoryview]] = [], bcast: bool = False, optin: bool = False, optout: bool = False, noloop: bool = False) → Union[Awaitable, Any]

Turn off the tracking mode. For more information about the options look at client_tracking func.

See https://redis.io/commands/client-tracking

client_tracking_on(clientid: Optional[int] = None, prefix: Sequence[Union[bytes, str, memoryview]] = [], bcast: bool = False, optin: bool = False, optout: bool = False, noloop: bool = False) → Union[Awaitable, Any]

Turn on the tracking mode. For more information about the options look at client_tracking func.

See https://redis.io/commands/client-tracking

client_trackinginfo(**kwargs) → Union[Awaitable, Any]

Returns the information about the current client connection’s use of the server assisted client side cache.

See https://redis.io/commands/client-trackinginfo

client_unblock(client_id: int, error: bool = False, **kwargs) → Union[Awaitable, Any]

Unblocks a connection by its client id. If error is True, unblocks the client with a special error message. If error is False (default), the client is unblocked using the regular timeout mechanism.

For more information check https://redis.io/commands/client-unblock

client_unpause(**kwargs) → Union[Awaitable, Any]

Unpause all redis clients

For more information check https://redis.io/commands/client-unpause

command(**kwargs)

Returns dict reply of details about all Redis commands.

For more information check https://redis.io/commands/command

command_docs(*args)

This function throws a NotImplementedError since it is intentionally not supported.

config_get(pattern: Union[bytes, str, memoryview] = '*', **kwargs) → Union[Awaitable, Any]

Return a dictionary of configuration based on the pattern

For more information check https://redis.io/commands/config-get

config_resetstat(**kwargs) → Union[Awaitable, Any]

Reset runtime statistics

For more information check https://redis.io/commands/config-resetstat

config_rewrite(**kwargs) → Union[Awaitable, Any]

Rewrite config file with the minimal change to reflect running config.

For more information check https://redis.io/commands/config-rewrite

config_set(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float], **kwargs) → Union[Awaitable, Any]

Set config item name with value

For more information check https://redis.io/commands/config-set

copy(source: str, destination: str, destination_db: Optional[str] = None, replace: bool = False) → Union[Awaitable, Any]

Copy the value stored in the source key to the destination key.

destination_db an alternative destination database. By default, the destination key is created in the source Redis database.

replace whether the destination key should be removed before copying the value to it. By default, the value is not copied if the destination key already exists.

For more information check https://redis.io/commands/copy

dbsize(**kwargs) → Union[Awaitable, Any]

Returns the number of keys in the current database

For more information check https://redis.io/commands/dbsize

debug_object(key: Union[bytes, str, memoryview], **kwargs) → Union[Awaitable, Any]

Returns version specific meta information about a given key

For more information check https://redis.io/commands/debug-object

decr(name: Union[bytes, str, memoryview], amount: int = 1) → Union[Awaitable, Any]

Decrements the value of key by amount. If no key exists, the value will be initialized as 0 - amount

For more information check https://redis.io/commands/decrby

decrby(name: Union[bytes, str, memoryview], amount: int = 1) → Union[Awaitable, Any]

Decrements the value of key by amount. If no key exists, the value will be initialized as 0 - amount

For more information check https://redis.io/commands/decrby

delete(*names) → Union[Awaitable, Any]

Delete one or more keys specified by names

dump(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Return a serialized version of the value stored at the specified key. If key does not exist a nil bulk reply is returned.

For more information check https://redis.io/commands/dump

echo(value: Union[bytes, memoryview, str, int, float], **kwargs) → Union[Awaitable, Any]

Echo the string back from the server

For more information check https://redis.io/commands/echo

eval(script: str, numkeys: int, *keys_and_args) → Union[Awaitable[str], str]

Execute the Lua script, specifying the numkeys the script will touch and the key names and argument values in keys_and_args. Returns the result of the script.

In practice, use the object returned by register_script. This function exists purely for Redis API completion.

For more information check https://redis.io/commands/eval

eval_ro(script: str, numkeys: int, *keys_and_args) → Union[Awaitable[str], str]

The read-only variant of the EVAL command

Execute the read-only Lue script specifying the numkeys the script will touch and the key names and argument values in keys_and_args. Returns the result of the script.

For more information check https://redis.io/commands/eval_ro

evalsha(sha: str, numkeys: int, *keys_and_args) → Union[Awaitable[str], str]

Use the sha to execute a Lua script already registered via EVAL or SCRIPT LOAD. Specify the numkeys the script will touch and the key names and argument values in keys_and_args. Returns the result of the script.

In practice, use the object returned by register_script. This function exists purely for Redis API completion.

For more information check https://redis.io/commands/evalsha

evalsha_ro(sha: str, numkeys: int, *keys_and_args) → Union[Awaitable[str], str]

The read-only variant of the EVALSHA command

Use the sha to execute a read-only Lua script already registered via EVAL or SCRIPT LOAD. Specify the numkeys the script will touch and the key names and argument values in keys_and_args. Returns the result of the script.

For more information check https://redis.io/commands/evalsha_ro

exists(*names) → Union[Awaitable, Any]

Returns the number of names that exist

For more information check https://redis.io/commands/exists

expire(name: Union[bytes, str, memoryview], time: Union[float, datetime.timedelta], nx: bool = False, xx: bool = False, gt: bool = False, lt: bool = False) → Union[Awaitable, Any]

Set an expire flag on key name for time seconds with given option. time can be represented by an integer or a Python timedelta object.

Valid options are:
NX -> Set expiry only when the key has no expiry XX -> Set expiry only when the key has an existing expiry GT -> Set expiry only when the new expiry is greater than current one LT -> Set expiry only when the new expiry is less than current one

For more information check https://redis.io/commands/expire

expireat(name: Union[bytes, str, memoryview], when: Union[int, datetime.datetime], nx: bool = False, xx: bool = False, gt: bool = False, lt: bool = False) → Union[Awaitable, Any]

Set an expire flag on key name with given option. when can be represented as an integer indicating unix time or a Python datetime object.

Valid options are:
-> NX – Set expiry only when the key has no expiry -> XX – Set expiry only when the key has an existing expiry -> GT – Set expiry only when the new expiry is greater than current one -> LT – Set expiry only when the new expiry is less than current one

For more information check https://redis.io/commands/expireat

expiretime(key: str) → int

Returns the absolute Unix timestamp (since January 1, 1970) in seconds at which the given key will expire.

For more information check https://redis.io/commands/expiretime

failover()

This function throws a NotImplementedError since it is intentionally not supported.

fcall(function, numkeys: int, *keys_and_args) → Union[Awaitable[str], str]

Invoke a function.

For more information check https://redis.io/commands/fcall

fcall_ro(function, numkeys: int, *keys_and_args) → Union[Awaitable[str], str]

This is a read-only variant of the FCALL command that cannot execute commands that modify data.

For more information check https://redis.io/commands/fcal_ro

flushall(asynchronous: bool = False, **kwargs) → Union[Awaitable, Any]

Delete all keys in all databases on the current host.

asynchronous indicates whether the operation is executed asynchronously by the server.

For more information check https://redis.io/commands/flushall

flushdb(asynchronous: bool = False, **kwargs) → Union[Awaitable, Any]

Delete all keys in the current database.

asynchronous indicates whether the operation is executed asynchronously by the server.

For more information check https://redis.io/commands/flushdb

function_delete(library: str) → Union[Awaitable[str], str]

Delete the library called library and all its functions.

For more information check https://redis.io/commands/function-delete

function_dump() → Union[Awaitable[str], str]

Return the serialized payload of loaded libraries.

For more information check https://redis.io/commands/function-dump

function_flush(mode: str = 'SYNC') → Union[Awaitable[str], str]

Deletes all the libraries.

For more information check https://redis.io/commands/function-flush

function_kill() → Union[Awaitable[str], str]

Kill a function that is currently executing.

For more information check https://redis.io/commands/function-kill

function_list(library: Optional[str] = '*', withcode: Optional[bool] = False) → Union[Awaitable[List], List]

Return information about the functions and libraries. :param library: pecify a pattern for matching library names :param withcode: cause the server to include the libraries source

implementation in the reply
function_load(engine: str, library: str, code: str, replace: Optional[bool] = False, description: Optional[str] = None) → Union[Awaitable[str], str]

Load a library to Redis. :param engine: the name of the execution engine for the library :param library: the unique name of the library :param code: the source code :param replace: changes the behavior to replace the library if a library called

library already exists
Parameters:description – description to the library

For more information check https://redis.io/commands/function-load

function_restore(payload: str, policy: Optional[str] = 'APPEND') → Union[Awaitable[str], str]

Restore libraries from the serialized payload. You can use the optional policy argument to provide a policy for handling existing libraries.

For more information check https://redis.io/commands/function-restore

function_stats() → Union[Awaitable[List], List]

Return information about the function that’s currently running and information about the available execution engines.

For more information check https://redis.io/commands/function-stats

geoadd(name: Union[bytes, str, memoryview], values: Sequence[Union[bytes, memoryview, str, int, float]], nx: bool = False, xx: bool = False, ch: bool = False) → Union[Awaitable, Any]

Add the specified geospatial items to the specified key identified by the name argument. The Geospatial items are given as ordered members of the values argument, each item or place is formed by the triad longitude, latitude and name.

Note: You can use ZREM to remove elements.

nx forces ZADD to only create new elements and not to update scores for elements that already exist.

xx forces ZADD to only update scores of elements that already exist. New elements will not be added.

ch modifies the return value to be the numbers of elements changed. Changed elements include new elements that were added and elements whose scores changed.

For more information check https://redis.io/commands/geoadd

geodist(name: Union[bytes, str, memoryview], place1: Union[bytes, memoryview, str, int, float], place2: Union[bytes, memoryview, str, int, float], unit: Optional[str] = None) → Union[Awaitable, Any]

Return the distance between place1 and place2 members of the name key. The units must be one of the following : m, km mi, ft. By default meters are used.

For more information check https://redis.io/commands/geodist

geohash(name: Union[bytes, str, memoryview], *values) → Union[Awaitable, Any]

Return the geo hash string for each item of values members of the specified key identified by the name argument.

For more information check https://redis.io/commands/geohash

geopos(name: Union[bytes, str, memoryview], *values) → Union[Awaitable, Any]

Return the positions of each item of values as members of the specified key identified by the name argument. Each position is represented by the pairs lon and lat.

For more information check https://redis.io/commands/geopos

georadius(name: Union[bytes, str, memoryview], longitude: float, latitude: float, radius: float, unit: Optional[str] = None, withdist: bool = False, withcoord: bool = False, withhash: bool = False, count: Optional[int] = None, sort: Optional[str] = None, store: Union[bytes, str, memoryview, None] = None, store_dist: Union[bytes, str, memoryview, None] = None, any: bool = False) → Union[Awaitable, Any]

Return the members of the specified key identified by the name argument which are within the borders of the area specified with the latitude and longitude location and the maximum distance from the center specified by the radius value.

The units must be one of the following : m, km mi, ft. By default

withdist indicates to return the distances of each place.

withcoord indicates to return the latitude and longitude of each place.

withhash indicates to return the geohash string of each place.

count indicates to return the number of elements up to N.

sort indicates to return the places in a sorted way, ASC for nearest to fairest and DESC for fairest to nearest.

store indicates to save the places names in a sorted set named with a specific key, each element of the destination sorted set is populated with the score got from the original geo sorted set.

store_dist indicates to save the places names in a sorted set named with a specific key, instead of store the sorted set destination score is set with the distance.

For more information check https://redis.io/commands/georadius

georadiusbymember(name: Union[bytes, str, memoryview], member: Union[bytes, memoryview, str, int, float], radius: float, unit: Optional[str] = None, withdist: bool = False, withcoord: bool = False, withhash: bool = False, count: Optional[int] = None, sort: Optional[str] = None, store: Union[bytes, str, memoryview, None] = None, store_dist: Union[bytes, str, memoryview, None] = None, any: bool = False) → Union[Awaitable, Any]

This command is exactly like georadius with the sole difference that instead of taking, as the center of the area to query, a longitude and latitude value, it takes the name of a member already existing inside the geospatial index represented by the sorted set.

For more information check https://redis.io/commands/georadiusbymember

geosearch(name: Union[bytes, str, memoryview], member: Union[bytes, memoryview, str, int, float, None] = None, longitude: Optional[float] = None, latitude: Optional[float] = None, unit: str = 'm', radius: Optional[float] = None, width: Optional[float] = None, height: Optional[float] = None, sort: Optional[str] = None, count: Optional[int] = None, any: bool = False, withcoord: bool = False, withdist: bool = False, withhash: bool = False) → Union[Awaitable, Any]

Return the members of specified key identified by the name argument, which are within the borders of the area specified by a given shape. This command extends the GEORADIUS command, so in addition to searching within circular areas, it supports searching within rectangular areas. This command should be used in place of the deprecated GEORADIUS and GEORADIUSBYMEMBER commands. member Use the position of the given existing

member in the sorted set. Can’t be given with longitude and latitude.

longitude and latitude Use the position given by this coordinates. Can’t be given with member radius Similar to GEORADIUS, search inside circular area according the given radius. Can’t be given with height and width. height and width Search inside an axis-aligned rectangle, determined by the given height and width. Can’t be given with radius unit must be one of the following : m, km, mi, ft. m for meters (the default value), km for kilometers, mi for miles and ft for feet. sort indicates to return the places in a sorted way, ASC for nearest to farest and DESC for farest to nearest. count limit the results to the first count matching items. any is set to True, the command will return as soon as enough matches are found. Can’t be provided without count withdist indicates to return the distances of each place. withcoord indicates to return the latitude and longitude of each place. withhash indicates to return the geohash string of each place.

For more information check https://redis.io/commands/geosearch

geosearchstore(dest: Union[bytes, str, memoryview], name: Union[bytes, str, memoryview], member: Union[bytes, memoryview, str, int, float, None] = None, longitude: Optional[float] = None, latitude: Optional[float] = None, unit: str = 'm', radius: Optional[float] = None, width: Optional[float] = None, height: Optional[float] = None, sort: Optional[str] = None, count: Optional[int] = None, any: bool = False, storedist: bool = False) → Union[Awaitable, Any]

This command is like GEOSEARCH, but stores the result in dest. By default, it stores the results in the destination sorted set with their geospatial information. if store_dist set to True, the command will stores the items in a sorted set populated with their distance from the center of the circle or box, as a floating-point number.

For more information check https://redis.io/commands/geosearchstore

get(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Return the value at key name, or None if the key doesn’t exist

For more information check https://redis.io/commands/get

getbit(name: Union[bytes, str, memoryview], offset: int) → Union[Awaitable, Any]

Returns a boolean indicating the value of offset in name

For more information check https://redis.io/commands/getbit

getdel(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Get the value at key name and delete the key. This command is similar to GET, except for the fact that it also deletes the key on success (if and only if the key’s value type is a string).

For more information check https://redis.io/commands/getdel

getex(name: Union[bytes, str, memoryview], ex: Union[float, datetime.timedelta, None] = None, px: Union[float, datetime.timedelta, None] = None, exat: Union[int, datetime.datetime, None] = None, pxat: Union[int, datetime.datetime, None] = None, persist: bool = False) → Union[Awaitable, Any]

Get the value of key and optionally set its expiration. GETEX is similar to GET, but is a write command with additional options. All time parameters can be given as datetime.timedelta or integers.

ex sets an expire flag on key name for ex seconds.

px sets an expire flag on key name for px milliseconds.

exat sets an expire flag on key name for ex seconds, specified in unix time.

pxat sets an expire flag on key name for ex milliseconds, specified in unix time.

persist remove the time to live associated with name.

For more information check https://redis.io/commands/getex

getrange(key: Union[bytes, str, memoryview], start: int, end: int) → Union[Awaitable, Any]

Returns the substring of the string value stored at key, determined by the offsets start and end (both are inclusive)

For more information check https://redis.io/commands/getrange

getset(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Sets the value at key name to value and returns the old value at key name atomically.

As per Redis 6.2, GETSET is considered deprecated. Please use SET with GET parameter in new code.

For more information check https://redis.io/commands/getset

hdel(name: str, *keys) → Union[Awaitable[int], int]

Delete keys from hash name

For more information check https://redis.io/commands/hdel

hello()

This function throws a NotImplementedError since it is intentionally not supported.

hexists(name: str, key: str) → Union[Awaitable[bool], bool]

Returns a boolean indicating if key exists within hash name

For more information check https://redis.io/commands/hexists

hget(name: str, key: str) → Union[Awaitable[Optional[str]], str, None]

Return the value of key within the hash name

For more information check https://redis.io/commands/hget

hgetall(name: str) → Union[Awaitable[dict], dict]

Return a Python dict of the hash’s name/value pairs

For more information check https://redis.io/commands/hgetall

hincrby(name: str, key: str, amount: int = 1) → Union[Awaitable[int], int]

Increment the value of key in hash name by amount

For more information check https://redis.io/commands/hincrby

hincrbyfloat(name: str, key: str, amount: float = 1.0) → Union[Awaitable[float], float]

Increment the value of key in hash name by floating amount

For more information check https://redis.io/commands/hincrbyfloat

hkeys(name: str) → Union[Awaitable[List], List]

Return the list of keys within hash name

For more information check https://redis.io/commands/hkeys

hlen(name: str) → Union[Awaitable[int], int]

Return the number of elements in hash name

For more information check https://redis.io/commands/hlen

hmget(name: str, keys: List, *args) → Union[Awaitable[List], List]

Returns a list of values ordered identically to keys

For more information check https://redis.io/commands/hmget

hmset(name: str, mapping: dict) → Union[Awaitable[str], str]

Set key to value within hash name for each corresponding key and value from the mapping dict.

For more information check https://redis.io/commands/hmset

hrandfield(key: str, count: int = None, withvalues: bool = False) → Union[Awaitable, Any]

Return a random field from the hash value stored at key.

count: if the argument is positive, return an array of distinct fields. If called with a negative count, the behavior changes and the command is allowed to return the same field multiple times. In this case, the number of returned fields is the absolute value of the specified count. withvalues: The optional WITHVALUES modifier changes the reply so it includes the respective values of the randomly selected hash fields.

For more information check https://redis.io/commands/hrandfield

hscan(name: Union[bytes, str, memoryview], cursor: int = 0, match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None) → Union[Awaitable, Any]

Incrementally return key/value slices in a hash. Also return a cursor indicating the scan position.

match allows for filtering the keys by pattern

count allows for hint the minimum number of returns

For more information check https://redis.io/commands/hscan

hscan_iter(name: str, match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None) → Iterator

Make an iterator using the HSCAN command so that the client doesn’t need to remember the cursor position.

match allows for filtering the keys by pattern

count allows for hint the minimum number of returns

hset(name: str, key: Optional[str] = None, value: Optional[str] = None, mapping: Optional[dict] = None, items: Optional[list] = None) → Union[Awaitable[int], int]

Set key to value within hash name, mapping accepts a dict of key/value pairs that will be added to hash name. items accepts a list of key/value pairs that will be added to hash name. Returns the number of fields that were added.

For more information check https://redis.io/commands/hset

hsetnx(name: str, key: str, value: str) → Union[Awaitable[bool], bool]

Set key to value within hash name if key does not exist. Returns 1 if HSETNX created a field, otherwise 0.

For more information check https://redis.io/commands/hsetnx

hstrlen(name: str, key: str) → Union[Awaitable[int], int]

Return the number of bytes stored in the value of key within hash name

For more information check https://redis.io/commands/hstrlen

hvals(name: str) → Union[Awaitable[List], List]

Return the list of values within hash name

For more information check https://redis.io/commands/hvals

incr(name: Union[bytes, str, memoryview], amount: int = 1) → Union[Awaitable, Any]

Increments the value of key by amount. If no key exists, the value will be initialized as amount

For more information check https://redis.io/commands/incrby

incrby(name: Union[bytes, str, memoryview], amount: int = 1) → Union[Awaitable, Any]

Increments the value of key by amount. If no key exists, the value will be initialized as amount

For more information check https://redis.io/commands/incrby

incrbyfloat(name: Union[bytes, str, memoryview], amount: float = 1.0) → Union[Awaitable, Any]

Increments the value at key name by floating amount. If no key exists, the value will be initialized as amount

For more information check https://redis.io/commands/incrbyfloat

info(section: Optional[str] = None, **kwargs) → Union[Awaitable, Any]

Returns a dictionary containing information about the Redis server

The section option can be used to select a specific section of information

The section option is not supported by older versions of Redis Server, and will generate ResponseError

For more information check https://redis.io/commands/info

keys(pattern: Union[bytes, str, memoryview] = '*', **kwargs) → Union[Awaitable, Any]

Returns a list of keys matching pattern

For more information check https://redis.io/commands/keys

lastsave(**kwargs) → Union[Awaitable, Any]

Return a Python datetime object representing the last time the Redis database was saved to disk

For more information check https://redis.io/commands/lastsave

lcs(key1: str, key2: str, len: Optional[bool] = False, idx: Optional[bool] = False, minmatchlen: Optional[int] = 0, withmatchlen: Optional[bool] = False) → Union[str, int, list]

Find the longest common subsequence between key1 and key2. If len is true the length of the match will will be returned. If idx is true the match position in each strings will be returned. minmatchlen restrict the list of matches to the ones of the given minmatchlen. If withmatchlen the length of the match also will be returned. For more information check https://redis.io/commands/lcs

lindex(name: str, index: int) → Union[Awaitable[Optional[str]], str, None]

Return the item from list name at position index

Negative indexes are supported and will return an item at the end of the list

For more information check https://redis.io/commands/lindex

linsert(name: str, where: str, refvalue: str, value: str) → Union[Awaitable[int], int]

Insert value in list name either immediately before or after [where] refvalue

Returns the new length of the list on success or -1 if refvalue is not in the list.

For more information check https://redis.io/commands/linsert

llen(name: str) → Union[Awaitable[int], int]

Return the length of the list name

For more information check https://redis.io/commands/llen

lmove(first_list: str, second_list: str, src: str = 'LEFT', dest: str = 'RIGHT') → Union[Awaitable, Any]

Atomically returns and removes the first/last element of a list, pushing it as the first/last element on the destination list. Returns the element being popped and pushed.

For more information check https://redis.io/commands/lmove

lmpop(num_keys: int, *args, direction: str = None, count: Optional[int] = 1) → Union[Awaitable[list], list]

Pop count values (default 1) first non-empty list key from the list of args provided key names.

For more information check https://redis.io/commands/lmpop

lolwut(*version_numbers, **kwargs) → Union[Awaitable, Any]

Get the Redis version and a piece of generative computer art

See: https://redis.io/commands/lolwut

lpop(name: str, count: Optional[int] = None) → Union[str, List, None]

Removes and returns the first elements of the list name.

By default, the command pops a single element from the beginning of the list. When provided with the optional count argument, the reply will consist of up to count elements, depending on the list’s length.

For more information check https://redis.io/commands/lpop

lpos(name: str, value: str, rank: Optional[int] = None, count: Optional[int] = None, maxlen: Optional[int] = None) → Union[str, List, None]

Get position of value within the list name

If specified, rank indicates the “rank” of the first element to return in case there are multiple copies of value in the list. By default, LPOS returns the position of the first occurrence of value in the list. When rank 2, LPOS returns the position of the second value in the list. If rank is negative, LPOS searches the list in reverse. For example, -1 would return the position of the last occurrence of value and -2 would return the position of the next to last occurrence of value.

If specified, count indicates that LPOS should return a list of up to count positions. A count of 2 would return a list of up to 2 positions. A count of 0 returns a list of all positions matching value. When count is specified and but value does not exist in the list, an empty list is returned.

If specified, maxlen indicates the maximum number of list elements to scan. A maxlen of 1000 will only return the position(s) of items within the first 1000 entries in the list. A maxlen of 0 (the default) will scan the entire list.

For more information check https://redis.io/commands/lpos

lpush(name: str, *values) → Union[Awaitable[int], int]

Push values onto the head of the list name

For more information check https://redis.io/commands/lpush

lpushx(name: str, *values) → Union[Awaitable[int], int]

Push value onto the head of the list name if name exists

For more information check https://redis.io/commands/lpushx

lrange(name: str, start: int, end: int) → Union[Awaitable[list], list]

Return a slice of the list name between position start and end

start and end can be negative numbers just like Python slicing notation

For more information check https://redis.io/commands/lrange

lrem(name: str, count: int, value: str) → Union[Awaitable[int], int]

Remove the first count occurrences of elements equal to value from the list stored at name.

The count argument influences the operation in the following ways:

count > 0: Remove elements equal to value moving from head to tail. count < 0: Remove elements equal to value moving from tail to head. count = 0: Remove all elements equal to value.

For more information check https://redis.io/commands/lrem

lset(name: str, index: int, value: str) → Union[Awaitable[str], str]

Set element at index of list name to value

For more information check https://redis.io/commands/lset

ltrim(name: str, start: int, end: int) → Union[Awaitable[str], str]

Trim the list name, removing all values not within the slice between start and end

start and end can be negative numbers just like Python slicing notation

For more information check https://redis.io/commands/ltrim

memory_malloc_stats(**kwargs) → Union[Awaitable, Any]

Return an internal statistics report from the memory allocator.

See: https://redis.io/commands/memory-malloc-stats

memory_purge(**kwargs) → Union[Awaitable, Any]

Attempts to purge dirty pages for reclamation by allocator

For more information check https://redis.io/commands/memory-purge

memory_stats(**kwargs) → Union[Awaitable, Any]

Return a dictionary of memory stats

For more information check https://redis.io/commands/memory-stats

memory_usage(key: Union[bytes, str, memoryview], samples: Optional[int] = None, **kwargs) → Union[Awaitable, Any]

Return the total memory usage for key, its value and associated administrative overheads.

For nested data structures, samples is the number of elements to sample. If left unspecified, the server’s default is 5. Use 0 to sample all elements.

For more information check https://redis.io/commands/memory-usage

mget(keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]], *args) → Union[Awaitable, Any]

Returns a list of values ordered identically to keys

For more information check https://redis.io/commands/mget

migrate(host: str, port: int, keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]], destination_db: int, timeout: int, copy: bool = False, replace: bool = False, auth: Optional[str] = None, **kwargs) → Union[Awaitable, Any]

Migrate 1 or more keys from the current Redis server to a different server specified by the host, port and destination_db.

The timeout, specified in milliseconds, indicates the maximum time the connection between the two servers can be idle before the command is interrupted.

If copy is True, the specified keys are NOT deleted from the source server.

If replace is True, this operation will overwrite the keys on the destination server if they exist.

If auth is specified, authenticate to the destination server with the password provided.

For more information check https://redis.io/commands/migrate

module_list() → Union[Awaitable, Any]

Returns a list of dictionaries containing the name and version of all loaded modules.

For more information check https://redis.io/commands/module-list

module_load(path, *args) → Union[Awaitable, Any]

Loads the module from path. Passes all *args to the module, during loading. Raises ModuleError if a module is not found at path.

For more information check https://redis.io/commands/module-load

module_unload(name) → Union[Awaitable, Any]

Unloads the module name. Raises ModuleError if name is not in loaded modules.

For more information check https://redis.io/commands/module-unload

move(name: Union[bytes, str, memoryview], db: int) → Union[Awaitable, Any]

Moves the key name to a different Redis database db

For more information check https://redis.io/commands/move

mset(mapping: Mapping[AnyKeyT, Union[bytes, memoryview, str, int, float]]) → Union[Awaitable, Any]

Sets key/values based on a mapping. Mapping is a dictionary of key/value pairs. Both keys and values should be strings or types that can be cast to a string via str().

For more information check https://redis.io/commands/mset

msetnx(mapping: Mapping[AnyKeyT, Union[bytes, memoryview, str, int, float]]) → Union[Awaitable, Any]

Sets key/values based on a mapping if none of the keys are already set. Mapping is a dictionary of key/value pairs. Both keys and values should be strings or types that can be cast to a string via str(). Returns a boolean indicating if the operation was successful.

For more information check https://redis.io/commands/msetnx

object(infotype: str, key: Union[bytes, str, memoryview], **kwargs) → Union[Awaitable, Any]

Return the encoding, idletime, or refcount about the key

persist(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Removes an expiration on name

For more information check https://redis.io/commands/persist

pexpire(name: Union[bytes, str, memoryview], time: Union[float, datetime.timedelta], nx: bool = False, xx: bool = False, gt: bool = False, lt: bool = False) → Union[Awaitable, Any]

Set an expire flag on key name for time milliseconds with given option. time can be represented by an integer or a Python timedelta object.

Valid options are:
NX -> Set expiry only when the key has no expiry XX -> Set expiry only when the key has an existing expiry GT -> Set expiry only when the new expiry is greater than current one LT -> Set expiry only when the new expiry is less than current one

For more information check https://redis.io/commands/pexpire

pexpireat(name: Union[bytes, str, memoryview], when: Union[int, datetime.datetime], nx: bool = False, xx: bool = False, gt: bool = False, lt: bool = False) → Union[Awaitable, Any]

Set an expire flag on key name with given option. when can be represented as an integer representing unix time in milliseconds (unix time * 1000) or a Python datetime object.

Valid options are:
NX -> Set expiry only when the key has no expiry XX -> Set expiry only when the key has an existing expiry GT -> Set expiry only when the new expiry is greater than current one LT -> Set expiry only when the new expiry is less than current one

For more information check https://redis.io/commands/pexpireat

pexpiretime(key: str) → int

Returns the absolute Unix timestamp (since January 1, 1970) in milliseconds at which the given key will expire.

For more information check https://redis.io/commands/pexpiretime

pfadd(name: Union[bytes, str, memoryview], *values) → Union[Awaitable, Any]

Adds the specified elements to the specified HyperLogLog.

For more information check https://redis.io/commands/pfadd

pfcount(*sources) → Union[Awaitable, Any]

Return the approximated cardinality of the set observed by the HyperLogLog at key(s).

For more information check https://redis.io/commands/pfcount

pfmerge(dest: Union[bytes, str, memoryview], *sources) → Union[Awaitable, Any]

Merge N different HyperLogLogs into a single one.

For more information check https://redis.io/commands/pfmerge

ping(**kwargs) → Union[Awaitable, Any]

Ping the Redis server

For more information check https://redis.io/commands/ping

psetex(name: Union[bytes, str, memoryview], time_ms: Union[float, datetime.timedelta], value: Union[bytes, memoryview, str, int, float])

Set the value of key name to value that expires in time_ms milliseconds. time_ms can be represented by an integer or a Python timedelta object

For more information check https://redis.io/commands/psetex

psync(replicationid: str, offset: int)

Initiates a replication stream from the master. Newer version for sync.

For more information check https://redis.io/commands/sync

pttl(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns the number of milliseconds until the key name will expire

For more information check https://redis.io/commands/pttl

publish(channel: Union[bytes, str, memoryview], message: Union[bytes, memoryview, str, int, float], **kwargs) → Union[Awaitable, Any]

Publish message on channel. Returns the number of subscribers the message was delivered to.

For more information check https://redis.io/commands/publish

pubsub_channels(pattern: Union[bytes, str, memoryview] = '*', **kwargs) → Union[Awaitable, Any]

Return a list of channels that have at least one subscriber

For more information check https://redis.io/commands/pubsub-channels

pubsub_numpat(**kwargs) → Union[Awaitable, Any]

Returns the number of subscriptions to patterns

For more information check https://redis.io/commands/pubsub-numpat

pubsub_numsub(*args, **kwargs) → Union[Awaitable, Any]

Return a list of (channel, number of subscribers) tuples for each channel given in *args

For more information check https://redis.io/commands/pubsub-numsub

quit(**kwargs) → Union[Awaitable, Any]

Ask the server to close the connection.

For more information check https://redis.io/commands/quit

randomkey(**kwargs) → Union[Awaitable, Any]

Returns the name of a random key

For more information check https://redis.io/commands/randomkey

readonly(**kwargs) → Union[Awaitable, Any]

Enables read queries for a connection to a Redis Cluster replica node.

For more information check https://redis.io/commands/readonly

readwrite(**kwargs) → Union[Awaitable, Any]

Disables read queries for a connection to a Redis Cluster slave node.

For more information check https://redis.io/commands/readwrite

register_script(script: Union[bytes, str, memoryview]) → redis.commands.core.Script

Register a Lua script specifying the keys it will touch. Returns a Script object that is callable and hides the complexity of deal with scripts, keys, and shas. This is the preferred way to work with Lua scripts.

rename(src: Union[bytes, str, memoryview], dst: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Rename key src to dst

For more information check https://redis.io/commands/rename

renamenx(src: Union[bytes, str, memoryview], dst: Union[bytes, str, memoryview])

Rename key src to dst if dst doesn’t already exist

For more information check https://redis.io/commands/renamenx

replicaof(*args, **kwargs) → Union[Awaitable, Any]

Update the replication settings of a redis replica, on the fly. Examples of valid arguments include:

NO ONE (set no replication) host port (set to the host and port of a redis server)

For more information check https://redis.io/commands/replicaof

reset() → Union[Awaitable, Any]

Perform a full reset on the connection’s server side contenxt.

See: https://redis.io/commands/reset

restore(name: Union[bytes, str, memoryview], ttl: float, value: Union[bytes, memoryview, str, int, float], replace: bool = False, absttl: bool = False, idletime: Optional[int] = None, frequency: Optional[int] = None) → Union[Awaitable, Any]

Create a key using the provided serialized value, previously obtained using DUMP.

replace allows an existing key on name to be overridden. If it’s not specified an error is raised on collision.

absttl if True, specified ttl should represent an absolute Unix timestamp in milliseconds in which the key will expire. (Redis 5.0 or greater).

idletime Used for eviction, this is the number of seconds the key must be idle, prior to execution.

frequency Used for eviction, this is the frequency counter of the object stored at the key, prior to execution.

For more information check https://redis.io/commands/restore

role() → Union[Awaitable, Any]

Provide information on the role of a Redis instance in the context of replication, by returning if the instance is currently a master, slave, or sentinel.

For more information check https://redis.io/commands/role

rpop(name: str, count: Optional[int] = None) → Union[str, List, None]

Removes and returns the last elements of the list name.

By default, the command pops a single element from the end of the list. When provided with the optional count argument, the reply will consist of up to count elements, depending on the list’s length.

For more information check https://redis.io/commands/rpop

rpoplpush(src: str, dst: str) → Union[Awaitable[str], str]

RPOP a value off of the src list and atomically LPUSH it on to the dst list. Returns the value.

For more information check https://redis.io/commands/rpoplpush

rpush(name: str, *values) → Union[Awaitable[int], int]

Push values onto the tail of the list name

For more information check https://redis.io/commands/rpush

rpushx(name: str, value: str) → Union[Awaitable[int], int]

Push value onto the tail of the list name if name exists

For more information check https://redis.io/commands/rpushx

sadd(name: str, *values) → Union[Awaitable[int], int]

Add value(s) to set name

For more information check https://redis.io/commands/sadd

save(**kwargs) → Union[Awaitable, Any]

Tell the Redis server to save its data to disk, blocking until the save is complete

For more information check https://redis.io/commands/save

scan(cursor: int = 0, match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None, _type: Optional[str] = None, **kwargs) → Union[Awaitable, Any]

Incrementally return lists of key names. Also return a cursor indicating the scan position.

match allows for filtering the keys by pattern

count provides a hint to Redis about the number of keys to
return per batch.
_type filters the returned values by a particular Redis type.
Stock Redis instances allow for the following types: HASH, LIST, SET, STREAM, STRING, ZSET Additionally, Redis modules can expose other types as well.

For more information check https://redis.io/commands/scan

scan_iter(match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None, _type: Optional[str] = None, **kwargs) → Iterator

Make an iterator using the SCAN command so that the client doesn’t need to remember the cursor position.

match allows for filtering the keys by pattern

count provides a hint to Redis about the number of keys to
return per batch.
_type filters the returned values by a particular Redis type.
Stock Redis instances allow for the following types: HASH, LIST, SET, STREAM, STRING, ZSET Additionally, Redis modules can expose other types as well.
scard(name: str) → Union[Awaitable[int], int]

Return the number of elements in set name

For more information check https://redis.io/commands/scard

script_exists(*args) → Union[Awaitable, Any]

Check if a script exists in the script cache by specifying the SHAs of each script as args. Returns a list of boolean values indicating if if each already script exists in the cache.

For more information check https://redis.io/commands/script-exists

script_flush(sync_type: Union[Literal[SYNC], Literal[ASYNC]] = None) → Union[Awaitable, Any]

Flush all scripts from the script cache. sync_type is by default SYNC (synchronous) but it can also be

ASYNC.

For more information check https://redis.io/commands/script-flush

script_kill() → Union[Awaitable, Any]

Kill the currently executing Lua script

For more information check https://redis.io/commands/script-kill

script_load(script: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Load a Lua script into the script cache. Returns the SHA.

For more information check https://redis.io/commands/script-load

sdiff(keys: List, *args) → Union[Awaitable[list], list]

Return the difference of sets specified by keys

For more information check https://redis.io/commands/sdiff

sdiffstore(dest: str, keys: List, *args) → Union[Awaitable[int], int]

Store the difference of sets specified by keys into a new set named dest. Returns the number of keys in the new set.

For more information check https://redis.io/commands/sdiffstore

select(index: int, **kwargs) → Union[Awaitable, Any]

Select the Redis logical database at index.

See: https://redis.io/commands/select

set(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float], ex: Union[float, datetime.timedelta, None] = None, px: Union[float, datetime.timedelta, None] = None, nx: bool = False, xx: bool = False, keepttl: bool = False, get: bool = False, exat: Union[int, datetime.datetime, None] = None, pxat: Union[int, datetime.datetime, None] = None) → Union[Awaitable, Any]

Set the value at key name to value

ex sets an expire flag on key name for ex seconds.

px sets an expire flag on key name for px milliseconds.

nx if set to True, set the value at key name to value only
if it does not exist.
xx if set to True, set the value at key name to value only
if it already exists.
keepttl if True, retain the time to live associated with the key.
(Available since Redis 6.0)
get if True, set the value at key name to value and return
the old value stored at key, or None if the key did not exist. (Available since Redis 6.2)
exat sets an expire flag on key name for ex seconds,
specified in unix time.
pxat sets an expire flag on key name for ex milliseconds,
specified in unix time.

For more information check https://redis.io/commands/set

setbit(name: Union[bytes, str, memoryview], offset: int, value: int) → Union[Awaitable, Any]

Flag the offset in name as value. Returns a boolean indicating the previous value of offset.

For more information check https://redis.io/commands/setbit

setex(name: Union[bytes, str, memoryview], time: Union[float, datetime.timedelta], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Set the value of key name to value that expires in time seconds. time can be represented by an integer or a Python timedelta object.

For more information check https://redis.io/commands/setex

setnx(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Set the value of key name to value if key doesn’t exist

For more information check https://redis.io/commands/setnx

setrange(name: Union[bytes, str, memoryview], offset: int, value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Overwrite bytes in the value of name starting at offset with value. If offset plus the length of value exceeds the length of the original value, the new value will be larger than before. If offset exceeds the length of the original value, null bytes will be used to pad between the end of the previous value and the start of what’s being injected.

Returns the length of the new string.

For more information check https://redis.io/commands/setrange

shutdown(save: bool = False, nosave: bool = False, **kwargs) → None

Shutdown the Redis server. If Redis has persistence configured, data will be flushed before shutdown. If the “save” option is set, a data flush will be attempted even if there is no persistence configured. If the “nosave” option is set, no data flush will be attempted. The “save” and “nosave” options cannot both be set.

For more information check https://redis.io/commands/shutdown

sinter(keys: List, *args) → Union[Awaitable[list], list]

Return the intersection of sets specified by keys

For more information check https://redis.io/commands/sinter

sintercard(numkeys: int, keys: List[str], limit: int = 0) → Union[Awaitable[int], int]

Return the cardinality of the intersect of multiple sets specified by ``keys`.

When LIMIT provided (defaults to 0 and means unlimited), if the intersection cardinality reaches limit partway through the computation, the algorithm will exit and yield limit as the cardinality

For more information check https://redis.io/commands/sintercard

sinterstore(dest: str, keys: List, *args) → Union[Awaitable[int], int]

Store the intersection of sets specified by keys into a new set named dest. Returns the number of keys in the new set.

For more information check https://redis.io/commands/sinterstore

sismember(name: str, value: str) → Union[Awaitable[bool], bool]

Return a boolean indicating if value is a member of set name

For more information check https://redis.io/commands/sismember

slaveof(host: Optional[str] = None, port: Optional[int] = None, **kwargs) → Union[Awaitable, Any]

Set the server to be a replicated slave of the instance identified by the host and port. If called without arguments, the instance is promoted to a master instead.

For more information check https://redis.io/commands/slaveof

slowlog_get(num: Optional[int] = None, **kwargs) → Union[Awaitable, Any]

Get the entries from the slowlog. If num is specified, get the most recent num items.

For more information check https://redis.io/commands/slowlog-get

slowlog_len(**kwargs) → Union[Awaitable, Any]

Get the number of items in the slowlog

For more information check https://redis.io/commands/slowlog-len

slowlog_reset(**kwargs) → Union[Awaitable, Any]

Remove all items in the slowlog

For more information check https://redis.io/commands/slowlog-reset

smembers(name: str) → Union[Awaitable[list], list]

Return all members of the set name

For more information check https://redis.io/commands/smembers

smismember(name: str, values: List, *args) → Union[Awaitable[List[bool]], List[bool]]

Return whether each value in values is a member of the set name as a list of bool in the order of values

For more information check https://redis.io/commands/smismember

smove(src: str, dst: str, value: str) → Union[Awaitable[bool], bool]

Move value from set src to set dst atomically

For more information check https://redis.io/commands/smove

sort(name: str, start: Optional[int] = None, num: Optional[int] = None, by: Optional[str] = None, get: Optional[List[str]] = None, desc: bool = False, alpha: bool = False, store: Optional[str] = None, groups: Optional[bool] = False) → Union[List, int]

Sort and return the list, set or sorted set at name.

start and num allow for paging through the sorted data

by allows using an external key to weight and sort the items.
Use an “*” to indicate where in the key the item value is located
get allows for returning items from external keys rather than the
sorted data itself. Use an “*” to indicate where in the key the item value is located

desc allows for reversing the sort

alpha allows for sorting lexicographically rather than numerically

store allows for storing the result of the sort into
the key store
groups if set to True and if get contains at least two
elements, sort will return a list of tuples, each containing the values fetched from the arguments to get.

For more information check https://redis.io/commands/sort

sort_ro(key: str, start: Optional[int] = None, num: Optional[int] = None, by: Optional[str] = None, get: Optional[List[str]] = None, desc: bool = False, alpha: bool = False) → list

Returns the elements contained in the list, set or sorted set at key. (read-only variant of the SORT command)

start and num allow for paging through the sorted data

by allows using an external key to weight and sort the items.
Use an “*” to indicate where in the key the item value is located
get allows for returning items from external keys rather than the
sorted data itself. Use an “*” to indicate where in the key the item value is located

desc allows for reversing the sort

alpha allows for sorting lexicographically rather than numerically

For more information check https://redis.io/commands/sort_ro

spop(name: str, count: Optional[int] = None) → Union[str, List, None]

Remove and return a random member of set name

For more information check https://redis.io/commands/spop

srandmember(name: str, number: Optional[int] = None) → Union[str, List, None]

If number is None, returns a random member of set name.

If number is supplied, returns a list of number random members of set name. Note this is only available when running Redis 2.6+.

For more information check https://redis.io/commands/srandmember

srem(name: str, *values) → Union[Awaitable[int], int]

Remove values from set name

For more information check https://redis.io/commands/srem

sscan(name: Union[bytes, str, memoryview], cursor: int = 0, match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None) → Union[Awaitable, Any]

Incrementally return lists of elements in a set. Also return a cursor indicating the scan position.

match allows for filtering the keys by pattern

count allows for hint the minimum number of returns

For more information check https://redis.io/commands/sscan

sscan_iter(name: Union[bytes, str, memoryview], match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None) → Iterator

Make an iterator using the SSCAN command so that the client doesn’t need to remember the cursor position.

match allows for filtering the keys by pattern

count allows for hint the minimum number of returns

stralgo(algo: Literal[LCS], value1: Union[bytes, str, memoryview], value2: Union[bytes, str, memoryview], specific_argument: Union[Literal[strings], Literal[keys]] = 'strings', len: bool = False, idx: bool = False, minmatchlen: Optional[int] = None, withmatchlen: bool = False, **kwargs) → Union[Awaitable, Any]

Implements complex algorithms that operate on strings. Right now the only algorithm implemented is the LCS algorithm (longest common substring). However new algorithms could be implemented in the future.

algo Right now must be LCS value1 and value2 Can be two strings or two keys specific_argument Specifying if the arguments to the algorithm will be keys or strings. strings is the default. len Returns just the len of the match. idx Returns the match positions in each string. minmatchlen Restrict the list of matches to the ones of a given minimal length. Can be provided only when idx set to True. withmatchlen Returns the matches with the len of the match. Can be provided only when idx set to True.

For more information check https://redis.io/commands/stralgo

strlen(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Return the number of bytes stored in the value of name

For more information check https://redis.io/commands/strlen

substr(name: Union[bytes, str, memoryview], start: int, end: int = -1) → Union[Awaitable, Any]

Return a substring of the string at key name. start and end are 0-based integers specifying the portion of the string to return.

sunion(keys: List, *args) → Union[Awaitable[List], List]

Return the union of sets specified by keys

For more information check https://redis.io/commands/sunion

sunionstore(dest: str, keys: List, *args) → Union[Awaitable[int], int]

Store the union of sets specified by keys into a new set named dest. Returns the number of keys in the new set.

For more information check https://redis.io/commands/sunionstore

swapdb(first: int, second: int, **kwargs) → Union[Awaitable, Any]

Swap two databases

For more information check https://redis.io/commands/swapdb

sync() → Union[Awaitable, Any]

Initiates a replication stream from the master.

For more information check https://redis.io/commands/sync

time(**kwargs) → Union[Awaitable, Any]

Returns the server time as a 2-item tuple of ints: (seconds since epoch, microseconds into this second).

For more information check https://redis.io/commands/time

touch(*args) → Union[Awaitable, Any]

Alters the last access time of a key(s) *args. A key is ignored if it does not exist.

For more information check https://redis.io/commands/touch

ttl(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns the number of seconds until the key name will expire

For more information check https://redis.io/commands/ttl

type(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns the type of key name

For more information check https://redis.io/commands/type

Unlink one or more keys specified by names

For more information check https://redis.io/commands/unlink

unwatch() → None

Unwatches the value at key name, or None of the key doesn’t exist

For more information check https://redis.io/commands/unwatch

wait(num_replicas: int, timeout: int, **kwargs) → Union[Awaitable, Any]

Redis synchronous replication That returns the number of replicas that processed the query when we finally have at least num_replicas, or when the timeout was reached.

For more information check https://redis.io/commands/wait

watch(*names) → None

Watches the values at keys names, or None if the key doesn’t exist

For more information check https://redis.io/commands/watch

xack(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], *ids) → Union[Awaitable, Any]

Acknowledges the successful processing of one or more messages. name: name of the stream. groupname: name of the consumer group. *ids: message ids to acknowledge.

For more information check https://redis.io/commands/xack

xadd(name: Union[bytes, str, memoryview], fields: Dict[Union[bytes, memoryview, str, int, float], Union[bytes, memoryview, str, int, float]], id: Union[int, bytes, str, memoryview] = '*', maxlen: Optional[int] = None, approximate: bool = True, nomkstream: bool = False, minid: Union[int, bytes, str, memoryview, None] = None, limit: Optional[int] = None) → Union[Awaitable, Any]

Add to a stream. name: name of the stream fields: dict of field/value pairs to insert into the stream id: Location to insert this record. By default it is appended. maxlen: truncate old stream members beyond this size. Can’t be specified with minid. approximate: actual stream length may be slightly more than maxlen nomkstream: When set to true, do not make a stream minid: the minimum id in the stream to query. Can’t be specified with maxlen. limit: specifies the maximum number of entries to retrieve

For more information check https://redis.io/commands/xadd

xautoclaim(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], consumername: Union[bytes, str, memoryview], min_idle_time: int, start_id: int = 0, count: Optional[int] = None, justid: bool = False) → Union[Awaitable, Any]

Transfers ownership of pending stream entries that match the specified criteria. Conceptually, equivalent to calling XPENDING and then XCLAIM, but provides a more straightforward way to deal with message delivery failures via SCAN-like semantics. name: name of the stream. groupname: name of the consumer group. consumername: name of a consumer that claims the message. min_idle_time: filter messages that were idle less than this amount of milliseconds. start_id: filter messages with equal or greater ID. count: optional integer, upper limit of the number of entries that the command attempts to claim. Set to 100 by default. justid: optional boolean, false by default. Return just an array of IDs of messages successfully claimed, without returning the actual message

For more information check https://redis.io/commands/xautoclaim

xclaim(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], consumername: Union[bytes, str, memoryview], min_idle_time: int, message_ids: [typing.List[typing.Union[int, bytes, str, memoryview]], typing.Tuple[typing.Union[int, bytes, str, memoryview]]], idle: Optional[int] = None, time: Optional[int] = None, retrycount: Optional[int] = None, force: bool = False, justid: bool = False) → Union[Awaitable, Any]

Changes the ownership of a pending message. name: name of the stream. groupname: name of the consumer group. consumername: name of a consumer that claims the message. min_idle_time: filter messages that were idle less than this amount of milliseconds message_ids: non-empty list or tuple of message IDs to claim idle: optional. Set the idle time (last time it was delivered) of the

message in ms
time: optional integer. This is the same as idle but instead of a
relative amount of milliseconds, it sets the idle time to a specific Unix time (in milliseconds).
retrycount: optional integer. set the retry counter to the specified
value. This counter is incremented every time a message is delivered again.
force: optional boolean, false by default. Creates the pending message
entry in the PEL even if certain specified IDs are not already in the PEL assigned to a different client.
justid: optional boolean, false by default. Return just an array of IDs

of messages successfully claimed, without returning the actual message

For more information check https://redis.io/commands/xclaim

xdel(name: Union[bytes, str, memoryview], *ids) → Union[Awaitable, Any]

Deletes one or more messages from a stream. name: name of the stream. *ids: message ids to delete.

For more information check https://redis.io/commands/xdel

xgroup_create(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], id: Union[int, bytes, str, memoryview] = '$', mkstream: bool = False) → Union[Awaitable, Any]

Create a new consumer group associated with a stream. name: name of the stream. groupname: name of the consumer group. id: ID of the last item in the stream to consider already delivered.

For more information check https://redis.io/commands/xgroup-create

xgroup_createconsumer(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], consumername: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Consumers in a consumer group are auto-created every time a new consumer name is mentioned by some command. They can be explicitly created by using this command. name: name of the stream. groupname: name of the consumer group. consumername: name of consumer to create.

See: https://redis.io/commands/xgroup-createconsumer

xgroup_delconsumer(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], consumername: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Remove a specific consumer from a consumer group. Returns the number of pending messages that the consumer had before it was deleted. name: name of the stream. groupname: name of the consumer group. consumername: name of consumer to delete

For more information check https://redis.io/commands/xgroup-delconsumer

xgroup_destroy(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Destroy a consumer group. name: name of the stream. groupname: name of the consumer group.

For more information check https://redis.io/commands/xgroup-destroy

xgroup_setid(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], id: Union[int, bytes, str, memoryview]) → Union[Awaitable, Any]

Set the consumer group last delivered ID to something else. name: name of the stream. groupname: name of the consumer group. id: ID of the last item in the stream to consider already delivered.

For more information check https://redis.io/commands/xgroup-setid

xinfo_consumers(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns general information about the consumers in the group. name: name of the stream. groupname: name of the consumer group.

For more information check https://redis.io/commands/xinfo-consumers

xinfo_groups(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns general information about the consumer groups of the stream. name: name of the stream.

For more information check https://redis.io/commands/xinfo-groups

xinfo_stream(name: Union[bytes, str, memoryview], full: bool = False) → Union[Awaitable, Any]

Returns general information about the stream. name: name of the stream. full: optional boolean, false by default. Return full summary

For more information check https://redis.io/commands/xinfo-stream

xlen(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns the number of elements in a given stream.

For more information check https://redis.io/commands/xlen

xpending(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns information about pending messages of a group. name: name of the stream. groupname: name of the consumer group.

For more information check https://redis.io/commands/xpending

xpending_range(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], min: Union[int, bytes, str, memoryview], max: Union[int, bytes, str, memoryview], count: int, consumername: Union[bytes, str, memoryview, None] = None, idle: Optional[int] = None) → Union[Awaitable, Any]

Returns information about pending messages, in a range.

name: name of the stream. groupname: name of the consumer group. idle: available from version 6.2. filter entries by their idle-time, given in milliseconds (optional). min: minimum stream ID. max: maximum stream ID. count: number of messages to return consumername: name of a consumer to filter by (optional).

xrange(name: Union[bytes, str, memoryview], min: Union[int, bytes, str, memoryview] = '-', max: Union[int, bytes, str, memoryview] = '+', count: Optional[int] = None) → Union[Awaitable, Any]

Read stream values within an interval. name: name of the stream. start: first stream ID. defaults to ‘-‘,

meaning the earliest available.
finish: last stream ID. defaults to ‘+’,
meaning the latest available.
count: if set, only return this many items, beginning with the
earliest available.

For more information check https://redis.io/commands/xrange

xread(streams: Dict[Union[bytes, str, memoryview], Union[int, bytes, str, memoryview]], count: Optional[int] = None, block: Optional[int] = None) → Union[Awaitable, Any]

Block and monitor multiple streams for new data. streams: a dict of stream names to stream IDs, where

IDs indicate the last ID already seen.
count: if set, only return this many items, beginning with the
earliest available.

block: number of milliseconds to wait, if nothing already present.

For more information check https://redis.io/commands/xread

xreadgroup(groupname: str, consumername: str, streams: Dict[Union[bytes, str, memoryview], Union[int, bytes, str, memoryview]], count: Optional[int] = None, block: Optional[int] = None, noack: bool = False) → Union[Awaitable, Any]

Read from a stream via a consumer group. groupname: name of the consumer group. consumername: name of the requesting consumer. streams: a dict of stream names to stream IDs, where

IDs indicate the last ID already seen.
count: if set, only return this many items, beginning with the
earliest available.

block: number of milliseconds to wait, if nothing already present. noack: do not add messages to the PEL

For more information check https://redis.io/commands/xreadgroup

xrevrange(name: Union[bytes, str, memoryview], max: Union[int, bytes, str, memoryview] = '+', min: Union[int, bytes, str, memoryview] = '-', count: Optional[int] = None) → Union[Awaitable, Any]

Read stream values within an interval, in reverse order. name: name of the stream start: first stream ID. defaults to ‘+’,

meaning the latest available.
finish: last stream ID. defaults to ‘-‘,
meaning the earliest available.
count: if set, only return this many items, beginning with the
latest available.

For more information check https://redis.io/commands/xrevrange

xtrim(name: Union[bytes, str, memoryview], maxlen: int, approximate: bool = True, minid: Union[int, bytes, str, memoryview, None] = None, limit: Optional[int] = None) → Union[Awaitable, Any]

Trims old messages from a stream. name: name of the stream. maxlen: truncate old stream messages beyond this size Can’t be specified with minid. approximate: actual stream length may be slightly more than maxlen minid: the minimum id in the stream to query Can’t be specified with maxlen. limit: specifies the maximum number of entries to retrieve

For more information check https://redis.io/commands/xtrim

zadd(name: Union[bytes, str, memoryview], mapping: Mapping[AnyKeyT, Union[bytes, memoryview, str, int, float]], nx: bool = False, xx: bool = False, ch: bool = False, incr: bool = False, gt: bool = None, lt: bool = None) → Union[Awaitable, Any]

Set any number of element-name, score pairs to the key name. Pairs are specified as a dict of element-names keys to score values.

nx forces ZADD to only create new elements and not to update scores for elements that already exist.

xx forces ZADD to only update scores of elements that already exist. New elements will not be added.

ch modifies the return value to be the numbers of elements changed. Changed elements include new elements that were added and elements whose scores changed.

incr modifies ZADD to behave like ZINCRBY. In this mode only a single element/score pair can be specified and the score is the amount the existing score will be incremented by. When using this mode the return value of ZADD will be the new score of the element.

LT Only update existing elements if the new score is less than the current score. This flag doesn’t prevent adding new elements.

GT Only update existing elements if the new score is greater than the current score. This flag doesn’t prevent adding new elements.

The return value of ZADD varies based on the mode specified. With no options, ZADD returns the number of new elements added to the sorted set.

NX, LT, and GT are mutually exclusive options.

See: https://redis.io/commands/ZADD

zcard(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Return the number of elements in the sorted set name

For more information check https://redis.io/commands/zcard

zcount(name: Union[bytes, str, memoryview], min: Union[float, str], max: Union[float, str]) → Union[Awaitable, Any]

Returns the number of elements in the sorted set at key name with a score between min and max.

For more information check https://redis.io/commands/zcount

zdiff(keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]], withscores: bool = False) → Union[Awaitable, Any]

Returns the difference between the first and all successive input sorted sets provided in keys.

For more information check https://redis.io/commands/zdiff

zdiffstore(dest: Union[bytes, str, memoryview], keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]]) → Union[Awaitable, Any]

Computes the difference between the first and all successive input sorted sets provided in keys and stores the result in dest.

For more information check https://redis.io/commands/zdiffstore

zincrby(name: Union[bytes, str, memoryview], amount: float, value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Increment the score of value in sorted set name by amount

For more information check https://redis.io/commands/zincrby

zinter(keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]], aggregate: Optional[str] = None, withscores: bool = False) → Union[Awaitable, Any]

Return the intersect of multiple sorted sets specified by keys. With the aggregate option, it is possible to specify how the results of the union are aggregated. This option defaults to SUM, where the score of an element is summed across the inputs where it exists. When this option is set to either MIN or MAX, the resulting set will contain the minimum or maximum score of an element across the inputs where it exists.

For more information check https://redis.io/commands/zinter

zintercard(numkeys: int, keys: List[str], limit: int = 0) → Union[Awaitable[int], int]

Return the cardinality of the intersect of multiple sorted sets specified by ``keys`. When LIMIT provided (defaults to 0 and means unlimited), if the intersection cardinality reaches limit partway through the computation, the algorithm will exit and yield limit as the cardinality

For more information check https://redis.io/commands/zintercard

zinterstore(dest: Union[bytes, str, memoryview], keys: Union[Sequence[Union[bytes, str, memoryview]], Mapping[AnyKeyT, float]], aggregate: Optional[str] = None) → Union[Awaitable, Any]

Intersect multiple sorted sets specified by keys into a new sorted set, dest. Scores in the destination will be aggregated based on the aggregate. This option defaults to SUM, where the score of an element is summed across the inputs where it exists. When this option is set to either MIN or MAX, the resulting set will contain the minimum or maximum score of an element across the inputs where it exists.

For more information check https://redis.io/commands/zinterstore

zlexcount(name, min, max)

Return the number of items in the sorted set name between the lexicographical range min and max.

For more information check https://redis.io/commands/zlexcount

zmpop(num_keys: int, keys: List[str], min: Optional[bool] = False, max: Optional[bool] = False, count: Optional[int] = 1) → Union[Awaitable[list], list]

Pop count values (default 1) off of the first non-empty sorted set named in the keys list. For more information check https://redis.io/commands/zmpop

zmscore(key: Union[bytes, str, memoryview], members: List[str]) → Union[Awaitable, Any]

Returns the scores associated with the specified members in the sorted set stored at key. members should be a list of the member name. Return type is a list of score. If the member does not exist, a None will be returned in corresponding position.

For more information check https://redis.io/commands/zmscore

zpopmax(name: Union[bytes, str, memoryview], count: Optional[int] = None) → Union[Awaitable, Any]

Remove and return up to count members with the highest scores from the sorted set name.

For more information check https://redis.io/commands/zpopmax

zpopmin(name: Union[bytes, str, memoryview], count: Optional[int] = None) → Union[Awaitable, Any]

Remove and return up to count members with the lowest scores from the sorted set name.

For more information check https://redis.io/commands/zpopmin

zrandmember(key: Union[bytes, str, memoryview], count: int = None, withscores: bool = False) → Union[Awaitable, Any]

Return a random element from the sorted set value stored at key.

count if the argument is positive, return an array of distinct fields. If called with a negative count, the behavior changes and the command is allowed to return the same field multiple times. In this case, the number of returned fields is the absolute value of the specified count.

withscores The optional WITHSCORES modifier changes the reply so it includes the respective scores of the randomly selected elements from the sorted set.

For more information check https://redis.io/commands/zrandmember

zrange(name: Union[bytes, str, memoryview], start: int, end: int, desc: bool = False, withscores: bool = False, score_cast_func: Union[type, Callable] = <class 'float'>, byscore: bool = False, bylex: bool = False, offset: int = None, num: int = None) → Union[Awaitable, Any]

Return a range of values from sorted set name between start and end sorted in ascending order.

start and end can be negative, indicating the end of the range.

desc a boolean indicating whether to sort the results in reversed order.

withscores indicates to return the scores along with the values. The return type is a list of (value, score) pairs.

score_cast_func a callable used to cast the score return value.

byscore when set to True, returns the range of elements from the sorted set having scores equal or between start and end.

bylex when set to True, returns the range of elements from the sorted set between the start and end lexicographical closed range intervals. Valid start and end must start with ( or [, in order to specify whether the range interval is exclusive or inclusive, respectively.

offset and num are specified, then return a slice of the range. Can’t be provided when using bylex.

For more information check https://redis.io/commands/zrange

zrangebylex(name: Union[bytes, str, memoryview], min: Union[bytes, memoryview, str, int, float], max: Union[bytes, memoryview, str, int, float], start: Optional[int] = None, num: Optional[int] = None) → Union[Awaitable, Any]

Return the lexicographical range of values from sorted set name between min and max.

If start and num are specified, then return a slice of the range.

For more information check https://redis.io/commands/zrangebylex

zrangebyscore(name: Union[bytes, str, memoryview], min: Union[float, str], max: Union[float, str], start: Optional[int] = None, num: Optional[int] = None, withscores: bool = False, score_cast_func: Union[type, Callable] = <class 'float'>) → Union[Awaitable, Any]

Return a range of values from the sorted set name with scores between min and max.

If start and num are specified, then return a slice of the range.

withscores indicates to return the scores along with the values. The return type is a list of (value, score) pairs

score_cast_func` a callable used to cast the score return value

For more information check https://redis.io/commands/zrangebyscore

zrangestore(dest: Union[bytes, str, memoryview], name: Union[bytes, str, memoryview], start: int, end: int, byscore: bool = False, bylex: bool = False, desc: bool = False, offset: Optional[int] = None, num: Optional[int] = None) → Union[Awaitable, Any]

Stores in dest the result of a range of values from sorted set name between start and end sorted in ascending order.

start and end can be negative, indicating the end of the range.

byscore when set to True, returns the range of elements from the sorted set having scores equal or between start and end.

bylex when set to True, returns the range of elements from the sorted set between the start and end lexicographical closed range intervals. Valid start and end must start with ( or [, in order to specify whether the range interval is exclusive or inclusive, respectively.

desc a boolean indicating whether to sort the results in reversed order.

offset and num are specified, then return a slice of the range. Can’t be provided when using bylex.

For more information check https://redis.io/commands/zrangestore

zrank(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Returns a 0-based value indicating the rank of value in sorted set name

For more information check https://redis.io/commands/zrank

zrem(name: Union[bytes, str, memoryview], *values) → Union[Awaitable, Any]

Remove member values from sorted set name

For more information check https://redis.io/commands/zrem

zremrangebylex(name: Union[bytes, str, memoryview], min: Union[bytes, memoryview, str, int, float], max: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Remove all elements in the sorted set name between the lexicographical range specified by min and max.

Returns the number of elements removed.

For more information check https://redis.io/commands/zremrangebylex

zremrangebyrank(name: Union[bytes, str, memoryview], min: int, max: int) → Union[Awaitable, Any]

Remove all elements in the sorted set name with ranks between min and max. Values are 0-based, ordered from smallest score to largest. Values can be negative indicating the highest scores. Returns the number of elements removed

For more information check https://redis.io/commands/zremrangebyrank

zremrangebyscore(name: Union[bytes, str, memoryview], min: Union[float, str], max: Union[float, str]) → Union[Awaitable, Any]

Remove all elements in the sorted set name with scores between min and max. Returns the number of elements removed.

For more information check https://redis.io/commands/zremrangebyscore

zrevrange(name: Union[bytes, str, memoryview], start: int, end: int, withscores: bool = False, score_cast_func: Union[type, Callable] = <class 'float'>) → Union[Awaitable, Any]

Return a range of values from sorted set name between start and end sorted in descending order.

start and end can be negative, indicating the end of the range.

withscores indicates to return the scores along with the values The return type is a list of (value, score) pairs

score_cast_func a callable used to cast the score return value

For more information check https://redis.io/commands/zrevrange

zrevrangebylex(name: Union[bytes, str, memoryview], max: Union[bytes, memoryview, str, int, float], min: Union[bytes, memoryview, str, int, float], start: Optional[int] = None, num: Optional[int] = None) → Union[Awaitable, Any]

Return the reversed lexicographical range of values from sorted set name between max and min.

If start and num are specified, then return a slice of the range.

For more information check https://redis.io/commands/zrevrangebylex

zrevrangebyscore(name: Union[bytes, str, memoryview], max: Union[float, str], min: Union[float, str], start: Optional[int] = None, num: Optional[int] = None, withscores: bool = False, score_cast_func: Union[type, Callable] = <class 'float'>)

Return a range of values from the sorted set name with scores between min and max in descending order.

If start and num are specified, then return a slice of the range.

withscores indicates to return the scores along with the values. The return type is a list of (value, score) pairs

score_cast_func a callable used to cast the score return value

For more information check https://redis.io/commands/zrevrangebyscore

zrevrank(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Returns a 0-based value indicating the descending rank of value in sorted set name

For more information check https://redis.io/commands/zrevrank

zscan(name: Union[bytes, str, memoryview], cursor: int = 0, match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None, score_cast_func: Union[type, Callable] = <class 'float'>) → Union[Awaitable, Any]

Incrementally return lists of elements in a sorted set. Also return a cursor indicating the scan position.

match allows for filtering the keys by pattern

count allows for hint the minimum number of returns

score_cast_func a callable used to cast the score return value

For more information check https://redis.io/commands/zscan

zscan_iter(name: Union[bytes, str, memoryview], match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None, score_cast_func: Union[type, Callable] = <class 'float'>) → Iterator

Make an iterator using the ZSCAN command so that the client doesn’t need to remember the cursor position.

match allows for filtering the keys by pattern

count allows for hint the minimum number of returns

score_cast_func a callable used to cast the score return value

zscore(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Return the score of element value in sorted set name

For more information check https://redis.io/commands/zscore

zunion(keys: Union[Sequence[Union[bytes, str, memoryview]], Mapping[AnyKeyT, float]], aggregate: Optional[str] = None, withscores: bool = False) → Union[Awaitable, Any]

Return the union of multiple sorted sets specified by keys. keys can be provided as dictionary of keys and their weights. Scores will be aggregated based on the aggregate, or SUM if none is provided.

For more information check https://redis.io/commands/zunion

zunionstore(dest: Union[bytes, str, memoryview], keys: Union[Sequence[Union[bytes, str, memoryview]], Mapping[AnyKeyT, float]], aggregate: Optional[str] = None) → Union[Awaitable, Any]

Union multiple sorted sets specified by keys into a new sorted set, dest. Scores in the destination will be aggregated based on the aggregate, or SUM if none is provided.

For more information check https://redis.io/commands/zunionstore

Sentinel Commands

class redis.commands.sentinel.SentinelCommands[source]

A class containing the commands specific to redis sentinel. This class is to be used as a mixin.

sentinel(*args)[source]

Redis Sentinel’s SENTINEL command.

sentinel_ckquorum(new_master_name)[source]

Check if the current Sentinel configuration is able to reach the quorum needed to failover a master, and the majority needed to authorize the failover.

This command should be used in monitoring systems to check if a Sentinel deployment is ok.

sentinel_failover(new_master_name)[source]

Force a failover as if the master was not reachable, and without asking for agreement to other Sentinels (however a new version of the configuration will be published so that the other Sentinels will update their configurations).

sentinel_flushconfig()[source]

Force Sentinel to rewrite its configuration on disk, including the current Sentinel state.

Normally Sentinel rewrites the configuration every time something changes in its state (in the context of the subset of the state which is persisted on disk across restart). However sometimes it is possible that the configuration file is lost because of operation errors, disk failures, package upgrade scripts or configuration managers. In those cases a way to to force Sentinel to rewrite the configuration file is handy.

This command works even if the previous configuration file is completely missing.

sentinel_get_master_addr_by_name(service_name)[source]

Returns a (host, port) pair for the given service_name

sentinel_master(service_name)[source]

Returns a dictionary containing the specified masters state.

sentinel_masters()[source]

Returns a list of dictionaries containing each master’s state.

sentinel_monitor(name, ip, port, quorum)[source]

Add a new master to Sentinel to be monitored

sentinel_remove(name)[source]

Remove a master from Sentinel’s monitoring

sentinel_reset(pattern)[source]

This command will reset all the masters with matching name. The pattern argument is a glob-style pattern.

The reset process clears any previous state in a master (including a failover in progress), and removes every slave and sentinel already discovered and associated with the master.

sentinel_sentinels(service_name)[source]

Returns a list of sentinels for service_name

sentinel_set(name, option, value)[source]

Set Sentinel monitoring parameters for a given master

sentinel_slaves(service_name)[source]

Returns a list of slaves for service_name

Redis Cluster Commands

The following Redis commands are available within a Redis Cluster. Generally they can be used as functions on your redis connection.

class redis.commands.cluster.RedisClusterCommands[source]

A class for all Redis Cluster commands

For key-based commands, the target node(s) will be internally determined by the keys’ hash slot. Non-key-based commands can be executed with the ‘target_nodes’ argument to target specific nodes. By default, if target_nodes is not specified, the command will be executed on the default cluster node.

Parameters::target_nodes – type can be one of the followings: - nodes flag: ALL_NODES, PRIMARIES, REPLICAS, RANDOM - ‘ClusterNode’ - ‘list(ClusterNodes)’ - ‘dict(any:clusterNodes)’
for example:
r.cluster_info(target_nodes=RedisCluster.ALL_NODES)
acl_cat(category: Optional[str] = None, **kwargs) → Union[Awaitable, Any]

Returns a list of categories or commands within a category.

If category is not supplied, returns a list of all categories. If category is supplied, returns a list of all commands within that category.

For more information check https://redis.io/commands/acl-cat

acl_deluser(*username, **kwargs) → Union[Awaitable, Any]

Delete the ACL for the specified ``username``s

For more information check https://redis.io/commands/acl-deluser

acl_dryrun(username, *args, **kwargs)

Simulate the execution of a given command by a given username.

For more information check https://redis.io/commands/acl-dryrun

acl_genpass(bits: Optional[int] = None, **kwargs) → Union[Awaitable, Any]

Generate a random password value. If bits is supplied then use this number of bits, rounded to the next multiple of 4. See: https://redis.io/commands/acl-genpass

acl_getuser(username: str, **kwargs) → Union[Awaitable, Any]

Get the ACL details for the specified username.

If username does not exist, return None

For more information check https://redis.io/commands/acl-getuser

acl_help(**kwargs) → Union[Awaitable, Any]

The ACL HELP command returns helpful text describing the different subcommands.

For more information check https://redis.io/commands/acl-help

acl_list(**kwargs) → Union[Awaitable, Any]

Return a list of all ACLs on the server

For more information check https://redis.io/commands/acl-list

acl_load(**kwargs) → Union[Awaitable, Any]

Load ACL rules from the configured aclfile.

Note that the server must be configured with the aclfile directive to be able to load ACL rules from an aclfile.

For more information check https://redis.io/commands/acl-load

acl_log(count: Optional[int] = None, **kwargs) → Union[Awaitable, Any]

Get ACL logs as a list. :param int count: Get logs[0:count]. :rtype: List.

For more information check https://redis.io/commands/acl-log

acl_log_reset(**kwargs) → Union[Awaitable, Any]

Reset ACL logs. :rtype: Boolean.

For more information check https://redis.io/commands/acl-log

acl_save(**kwargs) → Union[Awaitable, Any]

Save ACL rules to the configured aclfile.

Note that the server must be configured with the aclfile directive to be able to save ACL rules to an aclfile.

For more information check https://redis.io/commands/acl-save

acl_setuser(username: str, enabled: bool = False, nopass: bool = False, passwords: Union[str, Iterable[str], None] = None, hashed_passwords: Union[str, Iterable[str], None] = None, categories: Optional[Iterable[str]] = None, commands: Optional[Iterable[str]] = None, keys: Optional[Iterable[Union[bytes, str, memoryview]]] = None, reset: bool = False, reset_keys: bool = False, reset_passwords: bool = False, **kwargs) → Union[Awaitable, Any]

Create or update an ACL user.

Create or update the ACL for username. If the user already exists, the existing ACL is completely overwritten and replaced with the specified values.

enabled is a boolean indicating whether the user should be allowed to authenticate or not. Defaults to False.

nopass is a boolean indicating whether the can authenticate without a password. This cannot be True if passwords are also specified.

passwords if specified is a list of plain text passwords to add to or remove from the user. Each password must be prefixed with a ‘+’ to add or a ‘-’ to remove. For convenience, the value of passwords can be a simple prefixed string when adding or removing a single password.

hashed_passwords if specified is a list of SHA-256 hashed passwords to add to or remove from the user. Each hashed password must be prefixed with a ‘+’ to add or a ‘-’ to remove. For convenience, the value of hashed_passwords can be a simple prefixed string when adding or removing a single password.

categories if specified is a list of strings representing category permissions. Each string must be prefixed with either a ‘+’ to add the category permission or a ‘-’ to remove the category permission.

commands if specified is a list of strings representing command permissions. Each string must be prefixed with either a ‘+’ to add the command permission or a ‘-’ to remove the command permission.

keys if specified is a list of key patterns to grant the user access to. Keys patterns allow ‘*’ to support wildcard matching. For example, ‘*’ grants access to all keys while ‘cache:*’ grants access to all keys that are prefixed with ‘cache:’. keys should not be prefixed with a ‘~’.

reset is a boolean indicating whether the user should be fully reset prior to applying the new ACL. Setting this to True will remove all existing passwords, flags and privileges from the user and then apply the specified rules. If this is False, the user’s existing passwords, flags and privileges will be kept and any new specified rules will be applied on top.

reset_keys is a boolean indicating whether the user’s key permissions should be reset prior to applying any new key permissions specified in keys. If this is False, the user’s existing key permissions will be kept and any new specified key permissions will be applied on top.

reset_passwords is a boolean indicating whether to remove all existing passwords and the ‘nopass’ flag from the user prior to applying any new passwords specified in ‘passwords’ or ‘hashed_passwords’. If this is False, the user’s existing passwords and ‘nopass’ status will be kept and any new specified passwords or hashed_passwords will be applied on top.

For more information check https://redis.io/commands/acl-setuser

acl_users(**kwargs) → Union[Awaitable, Any]

Returns a list of all registered users on the server.

For more information check https://redis.io/commands/acl-users

acl_whoami(**kwargs) → Union[Awaitable, Any]

Get the username for the current connection

For more information check https://redis.io/commands/acl-whoami

append(key: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Appends the string value to the value at key. If key doesn’t already exist, create it with a value of value. Returns the new length of the value at key.

For more information check https://redis.io/commands/append

auth(password, username=None, **kwargs)

Authenticates the user. If you do not pass username, Redis will try to authenticate for the “default” user. If you do pass username, it will authenticate for the given user. For more information check https://redis.io/commands/auth

bf()

Access the bloom namespace.

bgrewriteaof(**kwargs)

Tell the Redis server to rewrite the AOF file from data in memory.

For more information check https://redis.io/commands/bgrewriteaof

bgsave(schedule: bool = True, **kwargs) → Union[Awaitable, Any]

Tell the Redis server to save its data to disk. Unlike save(), this method is asynchronous and returns immediately.

For more information check https://redis.io/commands/bgsave

bitcount(key: Union[bytes, str, memoryview], start: Optional[int] = None, end: Optional[int] = None) → Union[Awaitable, Any]

Returns the count of set bits in the value of key. Optional start and end parameters indicate which bytes to consider

For more information check https://redis.io/commands/bitcount

bitfield(key: Union[bytes, str, memoryview], default_overflow: Optional[str] = None) → redis.commands.core.BitFieldOperation

Return a BitFieldOperation instance to conveniently construct one or more bitfield operations on key.

For more information check https://redis.io/commands/bitfield

bitop(operation: str, dest: Union[bytes, str, memoryview], *keys) → Union[Awaitable, Any]

Perform a bitwise operation using operation between keys and store the result in dest.

For more information check https://redis.io/commands/bitop

bitpos(key: Union[bytes, str, memoryview], bit: int, start: Optional[int] = None, end: Optional[int] = None) → Union[Awaitable, Any]

Return the position of the first bit set to 1 or 0 in a string. start and end defines search range. The range is interpreted as a range of bytes and not a range of bits, so start=0 and end=2 means to look at the first three bytes.

For more information check https://redis.io/commands/bitpos

blmove(first_list: str, second_list: str, timeout: int, src: str = 'LEFT', dest: str = 'RIGHT') → Union[Awaitable, Any]

Blocking version of lmove.

For more information check https://redis.io/commands/blmove

blmpop(timeout: float, numkeys: int, *args, direction: str, count: Optional[int] = 1) → Optional[list]

Pop count values (default 1) from first non-empty in the list of provided key names.

When all lists are empty this command blocks the connection until another client pushes to it or until the timeout, timeout of 0 blocks indefinitely

For more information check https://redis.io/commands/blmpop

blpop(keys: List, timeout: Optional[int] = 0) → Union[Awaitable[list], list]

LPOP a value off of the first non-empty list named in the keys list.

If none of the lists in keys has a value to LPOP, then block for timeout seconds, or until a value gets pushed on to one of the lists.

If timeout is 0, then block indefinitely.

For more information check https://redis.io/commands/blpop

brpop(keys: List, timeout: Optional[int] = 0) → Union[Awaitable[list], list]

RPOP a value off of the first non-empty list named in the keys list.

If none of the lists in keys has a value to RPOP, then block for timeout seconds, or until a value gets pushed on to one of the lists.

If timeout is 0, then block indefinitely.

For more information check https://redis.io/commands/brpop

brpoplpush(src: str, dst: str, timeout: Optional[int] = 0) → Union[Awaitable[Optional[str]], str, None]

Pop a value off the tail of src, push it on the head of dst and then return it.

This command blocks until a value is in src or until timeout seconds elapse, whichever is first. A timeout value of 0 blocks forever.

For more information check https://redis.io/commands/brpoplpush

bzmpop(timeout: float, numkeys: int, keys: List[str], min: Optional[bool] = False, max: Optional[bool] = False, count: Optional[int] = 1) → Optional[list]

Pop count values (default 1) off of the first non-empty sorted set named in the keys list.

If none of the sorted sets in keys has a value to pop, then block for timeout seconds, or until a member gets added to one of the sorted sets.

If timeout is 0, then block indefinitely.

For more information check https://redis.io/commands/bzmpop

bzpopmax(keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]], timeout: Union[int, float, bytes, str, memoryview] = 0) → Union[Awaitable, Any]

ZPOPMAX a value off of the first non-empty sorted set named in the keys list.

If none of the sorted sets in keys has a value to ZPOPMAX, then block for timeout seconds, or until a member gets added to one of the sorted sets.

If timeout is 0, then block indefinitely.

For more information check https://redis.io/commands/bzpopmax

bzpopmin(keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]], timeout: Union[int, float, bytes, str, memoryview] = 0) → Union[Awaitable, Any]

ZPOPMIN a value off of the first non-empty sorted set named in the keys list.

If none of the sorted sets in keys has a value to ZPOPMIN, then block for timeout seconds, or until a member gets added to one of the sorted sets.

If timeout is 0, then block indefinitely.

For more information check https://redis.io/commands/bzpopmin

cf()

Access the bloom namespace.

client_getname(**kwargs) → Union[Awaitable, Any]

Returns the current connection name

For more information check https://redis.io/commands/client-getname

client_getredir(**kwargs) → Union[Awaitable, Any]

Returns the ID (an integer) of the client to whom we are redirecting tracking notifications.

see: https://redis.io/commands/client-getredir

client_id(**kwargs) → Union[Awaitable, Any]

Returns the current connection id

For more information check https://redis.io/commands/client-id

client_info(**kwargs) → Union[Awaitable, Any]

Returns information and statistics about the current client connection.

For more information check https://redis.io/commands/client-info

client_kill(address: str, **kwargs) → Union[Awaitable, Any]

Disconnects the client at address (ip:port)

For more information check https://redis.io/commands/client-kill

client_kill_filter(_id: Optional[str] = None, _type: Optional[str] = None, addr: Optional[str] = None, skipme: Optional[bool] = None, laddr: Optional[bool] = None, user: str = None, **kwargs) → Union[Awaitable, Any]

Disconnects client(s) using a variety of filter options :param _id: Kills a client by its unique ID field :param _type: Kills a client by type where type is one of ‘normal’, ‘master’, ‘slave’ or ‘pubsub’ :param addr: Kills a client by its ‘address:port’ :param skipme: If True, then the client calling the command will not get killed even if it is identified by one of the filter options. If skipme is not provided, the server defaults to skipme=True :param laddr: Kills a client by its ‘local (bind) address:port’ :param user: Kills a client for a specific user name

client_list(_type: Optional[str] = None, client_id: List[Union[bytes, memoryview, str, int, float]] = [], **kwargs) → Union[Awaitable, Any]

Returns a list of currently connected clients. If type of client specified, only that type will be returned. :param _type: optional. one of the client types (normal, master,

replica, pubsub)
Parameters:client_id – optional. a list of client ids

For more information check https://redis.io/commands/client-list

client_no_evict(mode: str) → Union[Awaitable[str], str]

Sets the client eviction mode for the current connection.

For more information check https://redis.io/commands/client-no-evict

client_pause(timeout: int, all: bool = True, **kwargs) → Union[Awaitable, Any]

Suspend all the Redis clients for the specified amount of time :param timeout: milliseconds to pause clients

For more information check https://redis.io/commands/client-pause :param all: If true (default) all client commands are blocked.

otherwise, clients are only blocked if they attempt to execute a write command. For the WRITE mode, some commands have special behavior:

EVAL/EVALSHA: Will block client for all scripts. PUBLISH: Will block client. PFCOUNT: Will block client. WAIT: Acknowledgments will be delayed, so this command will appear blocked.
client_reply(reply: Union[Literal[ON], Literal[OFF], Literal[SKIP]], **kwargs) → Union[Awaitable, Any]

Enable and disable redis server replies. reply Must be ON OFF or SKIP,

ON - The default most with server replies to commands OFF - Disable server responses to commands SKIP - Skip the response of the immediately following command.

Note: When setting OFF or SKIP replies, you will need a client object with a timeout specified in seconds, and will need to catch the TimeoutError.

The test_client_reply unit test illustrates this, and conftest.py has a client with a timeout.

See https://redis.io/commands/client-reply

client_setname(name: str, **kwargs) → Union[Awaitable, Any]

Sets the current connection name

For more information check https://redis.io/commands/client-setname

client_tracking(on: bool = True, clientid: Optional[int] = None, prefix: Sequence[Union[bytes, str, memoryview]] = [], bcast: bool = False, optin: bool = False, optout: bool = False, noloop: bool = False, **kwargs) → Union[Awaitable, Any]

Enables the tracking feature of the Redis server, that is used for server assisted client side caching.

on indicate for tracking on or tracking off. The dafualt is on.

clientid send invalidation messages to the connection with the specified ID.

bcast enable tracking in broadcasting mode. In this mode invalidation messages are reported for all the prefixes specified, regardless of the keys requested by the connection.

optin when broadcasting is NOT active, normally don’t track keys in read only commands, unless they are called immediately after a CLIENT CACHING yes command.

optout when broadcasting is NOT active, normally track keys in read only commands, unless they are called immediately after a CLIENT CACHING no command.

noloop don’t send notifications about keys modified by this connection itself.

prefix for broadcasting, register a given key prefix, so that notifications will be provided only for keys starting with this string.

See https://redis.io/commands/client-tracking

client_tracking_off(clientid: Optional[int] = None, prefix: Sequence[Union[bytes, str, memoryview]] = [], bcast: bool = False, optin: bool = False, optout: bool = False, noloop: bool = False) → Union[Awaitable, Any]

Turn off the tracking mode. For more information about the options look at client_tracking func.

See https://redis.io/commands/client-tracking

client_tracking_on(clientid: Optional[int] = None, prefix: Sequence[Union[bytes, str, memoryview]] = [], bcast: bool = False, optin: bool = False, optout: bool = False, noloop: bool = False) → Union[Awaitable, Any]

Turn on the tracking mode. For more information about the options look at client_tracking func.

See https://redis.io/commands/client-tracking

client_trackinginfo(**kwargs) → Union[Awaitable, Any]

Returns the information about the current client connection’s use of the server assisted client side cache.

See https://redis.io/commands/client-trackinginfo

client_unblock(client_id: int, error: bool = False, **kwargs) → Union[Awaitable, Any]

Unblocks a connection by its client id. If error is True, unblocks the client with a special error message. If error is False (default), the client is unblocked using the regular timeout mechanism.

For more information check https://redis.io/commands/client-unblock

client_unpause(**kwargs) → Union[Awaitable, Any]

Unpause all redis clients

For more information check https://redis.io/commands/client-unpause

cluster_addslots(target_node, *slots)[source]

Assign new hash slots to receiving node. Sends to specified node.

Target_node:‘ClusterNode’ The node to execute the command on
cluster_addslotsrange(target_node, *slots)[source]

Similar to the CLUSTER ADDSLOTS command. The difference between the two commands is that ADDSLOTS takes a list of slots to assign to the node, while ADDSLOTSRANGE takes a list of slot ranges (specified by start and end slots) to assign to the node.

Target_node:‘ClusterNode’ The node to execute the command on

For more information check https://redis.io/commands/cluster-addslotsrange

cluster_count_failure_report(node_id)[source]

Return the number of failure reports active for a given node Sends to a random node

cluster_countkeysinslot(slot_id)[source]

Return the number of local keys in the specified hash slot Send to node based on specified slot_id

cluster_delslots(*slots)[source]

Set hash slots as unbound in the cluster. It determines by it self what node the slot is in and sends it there

Returns a list of the results for each processed slot.

cluster_delslotsrange(*slots)[source]

Similar to the CLUSTER DELSLOTS command. The difference is that CLUSTER DELSLOTS takes a list of hash slots to remove from the node, while CLUSTER DELSLOTSRANGE takes a list of slot ranges to remove from the node.

For more information check https://redis.io/commands/cluster-delslotsrange

cluster_failover(target_node, option=None)[source]

Forces a slave to perform a manual failover of its master Sends to specified node

Target_node:‘ClusterNode’ The node to execute the command on
cluster_get_keys_in_slot(slot, num_keys)[source]

Returns the number of keys in the specified cluster slot

cluster_info(target_nodes=None)[source]

Provides info about Redis Cluster node state. The command will be sent to a random node in the cluster if no target node is specified.

cluster_keyslot(key)[source]

Returns the hash slot of the specified key Sends to random node in the cluster

Each node in a Redis Cluster maintains a pair of long-lived TCP link with each peer in the cluster: One for sending outbound messages towards the peer and one for receiving inbound messages from the peer.

This command outputs information of all such peer links as an array.

For more information check https://redis.io/commands/cluster-links

cluster_meet(host, port, target_nodes=None)[source]

Force a node cluster to handshake with another node. Sends to specified node.

cluster_nodes()[source]

Force a node cluster to handshake with another node

Sends to random node in the cluster

cluster_replicas(node_id, target_nodes=None)[source]

Provides a list of replica nodes replicating from the specified primary target node.

cluster_replicate(target_nodes, node_id)[source]

Reconfigure a node as a slave of the specified master node

cluster_reset(soft=True, target_nodes=None)[source]

Reset a Redis Cluster node

If ‘soft’ is True then it will send ‘SOFT’ argument If ‘soft’ is False then it will send ‘HARD’ argument

cluster_save_config(target_nodes=None)[source]

Forces the node to save cluster state on disk

cluster_set_config_epoch(epoch, target_nodes=None)[source]

Set the configuration epoch in a new node

cluster_setslot(target_node, node_id, slot_id, state)[source]

Bind an hash slot to a specific node

Target_node:‘ClusterNode’ The node to execute the command on
cluster_setslot_stable(slot_id)[source]

Clears migrating / importing state from the slot. It determines by it self what node the slot is in and sends it there.

cluster_slots(target_nodes=None)[source]

Get array of Cluster slot to node mappings

cms()

Access the bloom namespace.

command(**kwargs)

Returns dict reply of details about all Redis commands.

For more information check https://redis.io/commands/command

command_docs(*args)

This function throws a NotImplementedError since it is intentionally not supported.

config_get(pattern: Union[bytes, str, memoryview] = '*', **kwargs) → Union[Awaitable, Any]

Return a dictionary of configuration based on the pattern

For more information check https://redis.io/commands/config-get

config_resetstat(**kwargs) → Union[Awaitable, Any]

Reset runtime statistics

For more information check https://redis.io/commands/config-resetstat

config_rewrite(**kwargs) → Union[Awaitable, Any]

Rewrite config file with the minimal change to reflect running config.

For more information check https://redis.io/commands/config-rewrite

config_set(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float], **kwargs) → Union[Awaitable, Any]

Set config item name with value

For more information check https://redis.io/commands/config-set

copy(source: str, destination: str, destination_db: Optional[str] = None, replace: bool = False) → Union[Awaitable, Any]

Copy the value stored in the source key to the destination key.

destination_db an alternative destination database. By default, the destination key is created in the source Redis database.

replace whether the destination key should be removed before copying the value to it. By default, the value is not copied if the destination key already exists.

For more information check https://redis.io/commands/copy

dbsize(**kwargs) → Union[Awaitable, Any]

Returns the number of keys in the current database

For more information check https://redis.io/commands/dbsize

debug_object(key: Union[bytes, str, memoryview], **kwargs) → Union[Awaitable, Any]

Returns version specific meta information about a given key

For more information check https://redis.io/commands/debug-object

decr(name: Union[bytes, str, memoryview], amount: int = 1) → Union[Awaitable, Any]

Decrements the value of key by amount. If no key exists, the value will be initialized as 0 - amount

For more information check https://redis.io/commands/decrby

decrby(name: Union[bytes, str, memoryview], amount: int = 1) → Union[Awaitable, Any]

Decrements the value of key by amount. If no key exists, the value will be initialized as 0 - amount

For more information check https://redis.io/commands/decrby

delete(*keys)

Deletes the given keys in the cluster. The keys are first split up into slots and then an DEL command is sent for every slot

Non-existant keys are ignored. Returns the number of keys that were deleted.

dump(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Return a serialized version of the value stored at the specified key. If key does not exist a nil bulk reply is returned.

For more information check https://redis.io/commands/dump

echo(value: Union[bytes, memoryview, str, int, float], **kwargs) → Union[Awaitable, Any]

Echo the string back from the server

For more information check https://redis.io/commands/echo

eval(script: str, numkeys: int, *keys_and_args) → Union[Awaitable[str], str]

Execute the Lua script, specifying the numkeys the script will touch and the key names and argument values in keys_and_args. Returns the result of the script.

In practice, use the object returned by register_script. This function exists purely for Redis API completion.

For more information check https://redis.io/commands/eval

eval_ro(script: str, numkeys: int, *keys_and_args) → Union[Awaitable[str], str]

The read-only variant of the EVAL command

Execute the read-only Lue script specifying the numkeys the script will touch and the key names and argument values in keys_and_args. Returns the result of the script.

For more information check https://redis.io/commands/eval_ro

evalsha(sha: str, numkeys: int, *keys_and_args) → Union[Awaitable[str], str]

Use the sha to execute a Lua script already registered via EVAL or SCRIPT LOAD. Specify the numkeys the script will touch and the key names and argument values in keys_and_args. Returns the result of the script.

In practice, use the object returned by register_script. This function exists purely for Redis API completion.

For more information check https://redis.io/commands/evalsha

evalsha_ro(sha: str, numkeys: int, *keys_and_args) → Union[Awaitable[str], str]

The read-only variant of the EVALSHA command

Use the sha to execute a read-only Lua script already registered via EVAL or SCRIPT LOAD. Specify the numkeys the script will touch and the key names and argument values in keys_and_args. Returns the result of the script.

For more information check https://redis.io/commands/evalsha_ro

exists(*keys)

Returns the number of names that exist in the whole cluster. The keys are first split up into slots and then an EXISTS command is sent for every slot

expire(name: Union[bytes, str, memoryview], time: Union[float, datetime.timedelta], nx: bool = False, xx: bool = False, gt: bool = False, lt: bool = False) → Union[Awaitable, Any]

Set an expire flag on key name for time seconds with given option. time can be represented by an integer or a Python timedelta object.

Valid options are:
NX -> Set expiry only when the key has no expiry XX -> Set expiry only when the key has an existing expiry GT -> Set expiry only when the new expiry is greater than current one LT -> Set expiry only when the new expiry is less than current one

For more information check https://redis.io/commands/expire

expireat(name: Union[bytes, str, memoryview], when: Union[int, datetime.datetime], nx: bool = False, xx: bool = False, gt: bool = False, lt: bool = False) → Union[Awaitable, Any]

Set an expire flag on key name with given option. when can be represented as an integer indicating unix time or a Python datetime object.

Valid options are:
-> NX – Set expiry only when the key has no expiry -> XX – Set expiry only when the key has an existing expiry -> GT – Set expiry only when the new expiry is greater than current one -> LT – Set expiry only when the new expiry is less than current one

For more information check https://redis.io/commands/expireat

expiretime(key: str) → int

Returns the absolute Unix timestamp (since January 1, 1970) in seconds at which the given key will expire.

For more information check https://redis.io/commands/expiretime

failover()

This function throws a NotImplementedError since it is intentionally not supported.

fcall(function, numkeys: int, *keys_and_args) → Union[Awaitable[str], str]

Invoke a function.

For more information check https://redis.io/commands/fcall

fcall_ro(function, numkeys: int, *keys_and_args) → Union[Awaitable[str], str]

This is a read-only variant of the FCALL command that cannot execute commands that modify data.

For more information check https://redis.io/commands/fcal_ro

flushall(asynchronous: bool = False, **kwargs) → Union[Awaitable, Any]

Delete all keys in all databases on the current host.

asynchronous indicates whether the operation is executed asynchronously by the server.

For more information check https://redis.io/commands/flushall

flushdb(asynchronous: bool = False, **kwargs) → Union[Awaitable, Any]

Delete all keys in the current database.

asynchronous indicates whether the operation is executed asynchronously by the server.

For more information check https://redis.io/commands/flushdb

ft(index_name='idx')

Access the search namespace, providing support for redis search.

function_delete(library: str) → Union[Awaitable[str], str]

Delete the library called library and all its functions.

For more information check https://redis.io/commands/function-delete

function_dump() → Union[Awaitable[str], str]

Return the serialized payload of loaded libraries.

For more information check https://redis.io/commands/function-dump

function_flush(mode: str = 'SYNC') → Union[Awaitable[str], str]

Deletes all the libraries.

For more information check https://redis.io/commands/function-flush

function_kill() → Union[Awaitable[str], str]

Kill a function that is currently executing.

For more information check https://redis.io/commands/function-kill

function_list(library: Optional[str] = '*', withcode: Optional[bool] = False) → Union[Awaitable[List], List]

Return information about the functions and libraries. :param library: pecify a pattern for matching library names :param withcode: cause the server to include the libraries source

implementation in the reply
function_load(engine: str, library: str, code: str, replace: Optional[bool] = False, description: Optional[str] = None) → Union[Awaitable[str], str]

Load a library to Redis. :param engine: the name of the execution engine for the library :param library: the unique name of the library :param code: the source code :param replace: changes the behavior to replace the library if a library called

library already exists
Parameters:description – description to the library

For more information check https://redis.io/commands/function-load

function_restore(payload: str, policy: Optional[str] = 'APPEND') → Union[Awaitable[str], str]

Restore libraries from the serialized payload. You can use the optional policy argument to provide a policy for handling existing libraries.

For more information check https://redis.io/commands/function-restore

function_stats() → Union[Awaitable[List], List]

Return information about the function that’s currently running and information about the available execution engines.

For more information check https://redis.io/commands/function-stats

geoadd(name: Union[bytes, str, memoryview], values: Sequence[Union[bytes, memoryview, str, int, float]], nx: bool = False, xx: bool = False, ch: bool = False) → Union[Awaitable, Any]

Add the specified geospatial items to the specified key identified by the name argument. The Geospatial items are given as ordered members of the values argument, each item or place is formed by the triad longitude, latitude and name.

Note: You can use ZREM to remove elements.

nx forces ZADD to only create new elements and not to update scores for elements that already exist.

xx forces ZADD to only update scores of elements that already exist. New elements will not be added.

ch modifies the return value to be the numbers of elements changed. Changed elements include new elements that were added and elements whose scores changed.

For more information check https://redis.io/commands/geoadd

geodist(name: Union[bytes, str, memoryview], place1: Union[bytes, memoryview, str, int, float], place2: Union[bytes, memoryview, str, int, float], unit: Optional[str] = None) → Union[Awaitable, Any]

Return the distance between place1 and place2 members of the name key. The units must be one of the following : m, km mi, ft. By default meters are used.

For more information check https://redis.io/commands/geodist

geohash(name: Union[bytes, str, memoryview], *values) → Union[Awaitable, Any]

Return the geo hash string for each item of values members of the specified key identified by the name argument.

For more information check https://redis.io/commands/geohash

geopos(name: Union[bytes, str, memoryview], *values) → Union[Awaitable, Any]

Return the positions of each item of values as members of the specified key identified by the name argument. Each position is represented by the pairs lon and lat.

For more information check https://redis.io/commands/geopos

georadius(name: Union[bytes, str, memoryview], longitude: float, latitude: float, radius: float, unit: Optional[str] = None, withdist: bool = False, withcoord: bool = False, withhash: bool = False, count: Optional[int] = None, sort: Optional[str] = None, store: Union[bytes, str, memoryview, None] = None, store_dist: Union[bytes, str, memoryview, None] = None, any: bool = False) → Union[Awaitable, Any]

Return the members of the specified key identified by the name argument which are within the borders of the area specified with the latitude and longitude location and the maximum distance from the center specified by the radius value.

The units must be one of the following : m, km mi, ft. By default

withdist indicates to return the distances of each place.

withcoord indicates to return the latitude and longitude of each place.

withhash indicates to return the geohash string of each place.

count indicates to return the number of elements up to N.

sort indicates to return the places in a sorted way, ASC for nearest to fairest and DESC for fairest to nearest.

store indicates to save the places names in a sorted set named with a specific key, each element of the destination sorted set is populated with the score got from the original geo sorted set.

store_dist indicates to save the places names in a sorted set named with a specific key, instead of store the sorted set destination score is set with the distance.

For more information check https://redis.io/commands/georadius

georadiusbymember(name: Union[bytes, str, memoryview], member: Union[bytes, memoryview, str, int, float], radius: float, unit: Optional[str] = None, withdist: bool = False, withcoord: bool = False, withhash: bool = False, count: Optional[int] = None, sort: Optional[str] = None, store: Union[bytes, str, memoryview, None] = None, store_dist: Union[bytes, str, memoryview, None] = None, any: bool = False) → Union[Awaitable, Any]

This command is exactly like georadius with the sole difference that instead of taking, as the center of the area to query, a longitude and latitude value, it takes the name of a member already existing inside the geospatial index represented by the sorted set.

For more information check https://redis.io/commands/georadiusbymember

geosearch(name: Union[bytes, str, memoryview], member: Union[bytes, memoryview, str, int, float, None] = None, longitude: Optional[float] = None, latitude: Optional[float] = None, unit: str = 'm', radius: Optional[float] = None, width: Optional[float] = None, height: Optional[float] = None, sort: Optional[str] = None, count: Optional[int] = None, any: bool = False, withcoord: bool = False, withdist: bool = False, withhash: bool = False) → Union[Awaitable, Any]

Return the members of specified key identified by the name argument, which are within the borders of the area specified by a given shape. This command extends the GEORADIUS command, so in addition to searching within circular areas, it supports searching within rectangular areas. This command should be used in place of the deprecated GEORADIUS and GEORADIUSBYMEMBER commands. member Use the position of the given existing

member in the sorted set. Can’t be given with longitude and latitude.

longitude and latitude Use the position given by this coordinates. Can’t be given with member radius Similar to GEORADIUS, search inside circular area according the given radius. Can’t be given with height and width. height and width Search inside an axis-aligned rectangle, determined by the given height and width. Can’t be given with radius unit must be one of the following : m, km, mi, ft. m for meters (the default value), km for kilometers, mi for miles and ft for feet. sort indicates to return the places in a sorted way, ASC for nearest to farest and DESC for farest to nearest. count limit the results to the first count matching items. any is set to True, the command will return as soon as enough matches are found. Can’t be provided without count withdist indicates to return the distances of each place. withcoord indicates to return the latitude and longitude of each place. withhash indicates to return the geohash string of each place.

For more information check https://redis.io/commands/geosearch

geosearchstore(dest: Union[bytes, str, memoryview], name: Union[bytes, str, memoryview], member: Union[bytes, memoryview, str, int, float, None] = None, longitude: Optional[float] = None, latitude: Optional[float] = None, unit: str = 'm', radius: Optional[float] = None, width: Optional[float] = None, height: Optional[float] = None, sort: Optional[str] = None, count: Optional[int] = None, any: bool = False, storedist: bool = False) → Union[Awaitable, Any]

This command is like GEOSEARCH, but stores the result in dest. By default, it stores the results in the destination sorted set with their geospatial information. if store_dist set to True, the command will stores the items in a sorted set populated with their distance from the center of the circle or box, as a floating-point number.

For more information check https://redis.io/commands/geosearchstore

get(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Return the value at key name, or None if the key doesn’t exist

For more information check https://redis.io/commands/get

getbit(name: Union[bytes, str, memoryview], offset: int) → Union[Awaitable, Any]

Returns a boolean indicating the value of offset in name

For more information check https://redis.io/commands/getbit

getdel(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Get the value at key name and delete the key. This command is similar to GET, except for the fact that it also deletes the key on success (if and only if the key’s value type is a string).

For more information check https://redis.io/commands/getdel

getex(name: Union[bytes, str, memoryview], ex: Union[float, datetime.timedelta, None] = None, px: Union[float, datetime.timedelta, None] = None, exat: Union[int, datetime.datetime, None] = None, pxat: Union[int, datetime.datetime, None] = None, persist: bool = False) → Union[Awaitable, Any]

Get the value of key and optionally set its expiration. GETEX is similar to GET, but is a write command with additional options. All time parameters can be given as datetime.timedelta or integers.

ex sets an expire flag on key name for ex seconds.

px sets an expire flag on key name for px milliseconds.

exat sets an expire flag on key name for ex seconds, specified in unix time.

pxat sets an expire flag on key name for ex milliseconds, specified in unix time.

persist remove the time to live associated with name.

For more information check https://redis.io/commands/getex

getrange(key: Union[bytes, str, memoryview], start: int, end: int) → Union[Awaitable, Any]

Returns the substring of the string value stored at key, determined by the offsets start and end (both are inclusive)

For more information check https://redis.io/commands/getrange

getset(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Sets the value at key name to value and returns the old value at key name atomically.

As per Redis 6.2, GETSET is considered deprecated. Please use SET with GET parameter in new code.

For more information check https://redis.io/commands/getset

graph(index_name='idx')

Access the timeseries namespace, providing support for redis timeseries data.

hdel(name: str, *keys) → Union[Awaitable[int], int]

Delete keys from hash name

For more information check https://redis.io/commands/hdel

hello()

This function throws a NotImplementedError since it is intentionally not supported.

hexists(name: str, key: str) → Union[Awaitable[bool], bool]

Returns a boolean indicating if key exists within hash name

For more information check https://redis.io/commands/hexists

hget(name: str, key: str) → Union[Awaitable[Optional[str]], str, None]

Return the value of key within the hash name

For more information check https://redis.io/commands/hget

hgetall(name: str) → Union[Awaitable[dict], dict]

Return a Python dict of the hash’s name/value pairs

For more information check https://redis.io/commands/hgetall

hincrby(name: str, key: str, amount: int = 1) → Union[Awaitable[int], int]

Increment the value of key in hash name by amount

For more information check https://redis.io/commands/hincrby

hincrbyfloat(name: str, key: str, amount: float = 1.0) → Union[Awaitable[float], float]

Increment the value of key in hash name by floating amount

For more information check https://redis.io/commands/hincrbyfloat

hkeys(name: str) → Union[Awaitable[List], List]

Return the list of keys within hash name

For more information check https://redis.io/commands/hkeys

hlen(name: str) → Union[Awaitable[int], int]

Return the number of elements in hash name

For more information check https://redis.io/commands/hlen

hmget(name: str, keys: List, *args) → Union[Awaitable[List], List]

Returns a list of values ordered identically to keys

For more information check https://redis.io/commands/hmget

hmset(name: str, mapping: dict) → Union[Awaitable[str], str]

Set key to value within hash name for each corresponding key and value from the mapping dict.

For more information check https://redis.io/commands/hmset

hrandfield(key: str, count: int = None, withvalues: bool = False) → Union[Awaitable, Any]

Return a random field from the hash value stored at key.

count: if the argument is positive, return an array of distinct fields. If called with a negative count, the behavior changes and the command is allowed to return the same field multiple times. In this case, the number of returned fields is the absolute value of the specified count. withvalues: The optional WITHVALUES modifier changes the reply so it includes the respective values of the randomly selected hash fields.

For more information check https://redis.io/commands/hrandfield

hscan(name: Union[bytes, str, memoryview], cursor: int = 0, match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None) → Union[Awaitable, Any]

Incrementally return key/value slices in a hash. Also return a cursor indicating the scan position.

match allows for filtering the keys by pattern

count allows for hint the minimum number of returns

For more information check https://redis.io/commands/hscan

hscan_iter(name: str, match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None) → Iterator

Make an iterator using the HSCAN command so that the client doesn’t need to remember the cursor position.

match allows for filtering the keys by pattern

count allows for hint the minimum number of returns

hset(name: str, key: Optional[str] = None, value: Optional[str] = None, mapping: Optional[dict] = None, items: Optional[list] = None) → Union[Awaitable[int], int]

Set key to value within hash name, mapping accepts a dict of key/value pairs that will be added to hash name. items accepts a list of key/value pairs that will be added to hash name. Returns the number of fields that were added.

For more information check https://redis.io/commands/hset

hsetnx(name: str, key: str, value: str) → Union[Awaitable[bool], bool]

Set key to value within hash name if key does not exist. Returns 1 if HSETNX created a field, otherwise 0.

For more information check https://redis.io/commands/hsetnx

hstrlen(name: str, key: str) → Union[Awaitable[int], int]

Return the number of bytes stored in the value of key within hash name

For more information check https://redis.io/commands/hstrlen

hvals(name: str) → Union[Awaitable[List], List]

Return the list of values within hash name

For more information check https://redis.io/commands/hvals

incr(name: Union[bytes, str, memoryview], amount: int = 1) → Union[Awaitable, Any]

Increments the value of key by amount. If no key exists, the value will be initialized as amount

For more information check https://redis.io/commands/incrby

incrby(name: Union[bytes, str, memoryview], amount: int = 1) → Union[Awaitable, Any]

Increments the value of key by amount. If no key exists, the value will be initialized as amount

For more information check https://redis.io/commands/incrby

incrbyfloat(name: Union[bytes, str, memoryview], amount: float = 1.0) → Union[Awaitable, Any]

Increments the value at key name by floating amount. If no key exists, the value will be initialized as amount

For more information check https://redis.io/commands/incrbyfloat

info(section: Optional[str] = None, **kwargs) → Union[Awaitable, Any]

Returns a dictionary containing information about the Redis server

The section option can be used to select a specific section of information

The section option is not supported by older versions of Redis Server, and will generate ResponseError

For more information check https://redis.io/commands/info

json(encoder=<json.encoder.JSONEncoder object>, decoder=<json.decoder.JSONDecoder object>)

Access the json namespace, providing support for redis json.

keys(pattern: Union[bytes, str, memoryview] = '*', **kwargs) → Union[Awaitable, Any]

Returns a list of keys matching pattern

For more information check https://redis.io/commands/keys

lastsave(**kwargs) → Union[Awaitable, Any]

Return a Python datetime object representing the last time the Redis database was saved to disk

For more information check https://redis.io/commands/lastsave

lcs(key1: str, key2: str, len: Optional[bool] = False, idx: Optional[bool] = False, minmatchlen: Optional[int] = 0, withmatchlen: Optional[bool] = False) → Union[str, int, list]

Find the longest common subsequence between key1 and key2. If len is true the length of the match will will be returned. If idx is true the match position in each strings will be returned. minmatchlen restrict the list of matches to the ones of the given minmatchlen. If withmatchlen the length of the match also will be returned. For more information check https://redis.io/commands/lcs

lindex(name: str, index: int) → Union[Awaitable[Optional[str]], str, None]

Return the item from list name at position index

Negative indexes are supported and will return an item at the end of the list

For more information check https://redis.io/commands/lindex

linsert(name: str, where: str, refvalue: str, value: str) → Union[Awaitable[int], int]

Insert value in list name either immediately before or after [where] refvalue

Returns the new length of the list on success or -1 if refvalue is not in the list.

For more information check https://redis.io/commands/linsert

llen(name: str) → Union[Awaitable[int], int]

Return the length of the list name

For more information check https://redis.io/commands/llen

lmove(first_list: str, second_list: str, src: str = 'LEFT', dest: str = 'RIGHT') → Union[Awaitable, Any]

Atomically returns and removes the first/last element of a list, pushing it as the first/last element on the destination list. Returns the element being popped and pushed.

For more information check https://redis.io/commands/lmove

lmpop(num_keys: int, *args, direction: str = None, count: Optional[int] = 1) → Union[Awaitable[list], list]

Pop count values (default 1) first non-empty list key from the list of args provided key names.

For more information check https://redis.io/commands/lmpop

lolwut(*version_numbers, **kwargs) → Union[Awaitable, Any]

Get the Redis version and a piece of generative computer art

See: https://redis.io/commands/lolwut

lpop(name: str, count: Optional[int] = None) → Union[str, List, None]

Removes and returns the first elements of the list name.

By default, the command pops a single element from the beginning of the list. When provided with the optional count argument, the reply will consist of up to count elements, depending on the list’s length.

For more information check https://redis.io/commands/lpop

lpos(name: str, value: str, rank: Optional[int] = None, count: Optional[int] = None, maxlen: Optional[int] = None) → Union[str, List, None]

Get position of value within the list name

If specified, rank indicates the “rank” of the first element to return in case there are multiple copies of value in the list. By default, LPOS returns the position of the first occurrence of value in the list. When rank 2, LPOS returns the position of the second value in the list. If rank is negative, LPOS searches the list in reverse. For example, -1 would return the position of the last occurrence of value and -2 would return the position of the next to last occurrence of value.

If specified, count indicates that LPOS should return a list of up to count positions. A count of 2 would return a list of up to 2 positions. A count of 0 returns a list of all positions matching value. When count is specified and but value does not exist in the list, an empty list is returned.

If specified, maxlen indicates the maximum number of list elements to scan. A maxlen of 1000 will only return the position(s) of items within the first 1000 entries in the list. A maxlen of 0 (the default) will scan the entire list.

For more information check https://redis.io/commands/lpos

lpush(name: str, *values) → Union[Awaitable[int], int]

Push values onto the head of the list name

For more information check https://redis.io/commands/lpush

lpushx(name: str, *values) → Union[Awaitable[int], int]

Push value onto the head of the list name if name exists

For more information check https://redis.io/commands/lpushx

lrange(name: str, start: int, end: int) → Union[Awaitable[list], list]

Return a slice of the list name between position start and end

start and end can be negative numbers just like Python slicing notation

For more information check https://redis.io/commands/lrange

lrem(name: str, count: int, value: str) → Union[Awaitable[int], int]

Remove the first count occurrences of elements equal to value from the list stored at name.

The count argument influences the operation in the following ways:

count > 0: Remove elements equal to value moving from head to tail. count < 0: Remove elements equal to value moving from tail to head. count = 0: Remove all elements equal to value.

For more information check https://redis.io/commands/lrem

lset(name: str, index: int, value: str) → Union[Awaitable[str], str]

Set element at index of list name to value

For more information check https://redis.io/commands/lset

ltrim(name: str, start: int, end: int) → Union[Awaitable[str], str]

Trim the list name, removing all values not within the slice between start and end

start and end can be negative numbers just like Python slicing notation

For more information check https://redis.io/commands/ltrim

memory_malloc_stats(**kwargs) → Union[Awaitable, Any]

Return an internal statistics report from the memory allocator.

See: https://redis.io/commands/memory-malloc-stats

memory_purge(**kwargs) → Union[Awaitable, Any]

Attempts to purge dirty pages for reclamation by allocator

For more information check https://redis.io/commands/memory-purge

memory_stats(**kwargs) → Union[Awaitable, Any]

Return a dictionary of memory stats

For more information check https://redis.io/commands/memory-stats

memory_usage(key: Union[bytes, str, memoryview], samples: Optional[int] = None, **kwargs) → Union[Awaitable, Any]

Return the total memory usage for key, its value and associated administrative overheads.

For nested data structures, samples is the number of elements to sample. If left unspecified, the server’s default is 5. Use 0 to sample all elements.

For more information check https://redis.io/commands/memory-usage

mget(keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]], *args) → Union[Awaitable, Any]

Returns a list of values ordered identically to keys

For more information check https://redis.io/commands/mget

mget_nonatomic(keys, *args)

Splits the keys into different slots and then calls MGET for the keys of every slot. This operation will not be atomic if keys belong to more than one slot.

Returns a list of values ordered identically to keys

migrate(host: str, port: int, keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]], destination_db: int, timeout: int, copy: bool = False, replace: bool = False, auth: Optional[str] = None, **kwargs) → Union[Awaitable, Any]

Migrate 1 or more keys from the current Redis server to a different server specified by the host, port and destination_db.

The timeout, specified in milliseconds, indicates the maximum time the connection between the two servers can be idle before the command is interrupted.

If copy is True, the specified keys are NOT deleted from the source server.

If replace is True, this operation will overwrite the keys on the destination server if they exist.

If auth is specified, authenticate to the destination server with the password provided.

For more information check https://redis.io/commands/migrate

move(name: Union[bytes, str, memoryview], db: int) → Union[Awaitable, Any]

Moves the key name to a different Redis database db

For more information check https://redis.io/commands/move

mset(mapping: Mapping[AnyKeyT, Union[bytes, memoryview, str, int, float]]) → Union[Awaitable, Any]

Sets key/values based on a mapping. Mapping is a dictionary of key/value pairs. Both keys and values should be strings or types that can be cast to a string via str().

For more information check https://redis.io/commands/mset

mset_nonatomic(mapping)

Sets key/values based on a mapping. Mapping is a dictionary of key/value pairs. Both keys and values should be strings or types that can be cast to a string via str().

Splits the keys into different slots and then calls MSET for the keys of every slot. This operation will not be atomic if keys belong to more than one slot.

msetnx(mapping: Mapping[AnyKeyT, Union[bytes, memoryview, str, int, float]]) → Union[Awaitable, Any]

Sets key/values based on a mapping if none of the keys are already set. Mapping is a dictionary of key/value pairs. Both keys and values should be strings or types that can be cast to a string via str(). Returns a boolean indicating if the operation was successful.

For more information check https://redis.io/commands/msetnx

object(infotype: str, key: Union[bytes, str, memoryview], **kwargs) → Union[Awaitable, Any]

Return the encoding, idletime, or refcount about the key

persist(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Removes an expiration on name

For more information check https://redis.io/commands/persist

pexpire(name: Union[bytes, str, memoryview], time: Union[float, datetime.timedelta], nx: bool = False, xx: bool = False, gt: bool = False, lt: bool = False) → Union[Awaitable, Any]

Set an expire flag on key name for time milliseconds with given option. time can be represented by an integer or a Python timedelta object.

Valid options are:
NX -> Set expiry only when the key has no expiry XX -> Set expiry only when the key has an existing expiry GT -> Set expiry only when the new expiry is greater than current one LT -> Set expiry only when the new expiry is less than current one

For more information check https://redis.io/commands/pexpire

pexpireat(name: Union[bytes, str, memoryview], when: Union[int, datetime.datetime], nx: bool = False, xx: bool = False, gt: bool = False, lt: bool = False) → Union[Awaitable, Any]

Set an expire flag on key name with given option. when can be represented as an integer representing unix time in milliseconds (unix time * 1000) or a Python datetime object.

Valid options are:
NX -> Set expiry only when the key has no expiry XX -> Set expiry only when the key has an existing expiry GT -> Set expiry only when the new expiry is greater than current one LT -> Set expiry only when the new expiry is less than current one

For more information check https://redis.io/commands/pexpireat

pexpiretime(key: str) → int

Returns the absolute Unix timestamp (since January 1, 1970) in milliseconds at which the given key will expire.

For more information check https://redis.io/commands/pexpiretime

pfadd(name: Union[bytes, str, memoryview], *values) → Union[Awaitable, Any]

Adds the specified elements to the specified HyperLogLog.

For more information check https://redis.io/commands/pfadd

pfcount(*sources) → Union[Awaitable, Any]

Return the approximated cardinality of the set observed by the HyperLogLog at key(s).

For more information check https://redis.io/commands/pfcount

pfmerge(dest: Union[bytes, str, memoryview], *sources) → Union[Awaitable, Any]

Merge N different HyperLogLogs into a single one.

For more information check https://redis.io/commands/pfmerge

ping(**kwargs) → Union[Awaitable, Any]

Ping the Redis server

For more information check https://redis.io/commands/ping

psetex(name: Union[bytes, str, memoryview], time_ms: Union[float, datetime.timedelta], value: Union[bytes, memoryview, str, int, float])

Set the value of key name to value that expires in time_ms milliseconds. time_ms can be represented by an integer or a Python timedelta object

For more information check https://redis.io/commands/psetex

psync(replicationid: str, offset: int)

Initiates a replication stream from the master. Newer version for sync.

For more information check https://redis.io/commands/sync

pttl(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns the number of milliseconds until the key name will expire

For more information check https://redis.io/commands/pttl

publish(channel: Union[bytes, str, memoryview], message: Union[bytes, memoryview, str, int, float], **kwargs) → Union[Awaitable, Any]

Publish message on channel. Returns the number of subscribers the message was delivered to.

For more information check https://redis.io/commands/publish

pubsub_channels(pattern: Union[bytes, str, memoryview] = '*', **kwargs) → Union[Awaitable, Any]

Return a list of channels that have at least one subscriber

For more information check https://redis.io/commands/pubsub-channels

pubsub_numpat(**kwargs) → Union[Awaitable, Any]

Returns the number of subscriptions to patterns

For more information check https://redis.io/commands/pubsub-numpat

pubsub_numsub(*args, **kwargs) → Union[Awaitable, Any]

Return a list of (channel, number of subscribers) tuples for each channel given in *args

For more information check https://redis.io/commands/pubsub-numsub

quit(**kwargs) → Union[Awaitable, Any]

Ask the server to close the connection.

For more information check https://redis.io/commands/quit

randomkey(**kwargs) → Union[Awaitable, Any]

Returns the name of a random key

For more information check https://redis.io/commands/randomkey

readonly(target_nodes=None)[source]

Enables read queries. The command will be sent to the default cluster node if target_nodes is not specified.

readwrite(target_nodes=None)[source]

Disables read queries. The command will be sent to the default cluster node if target_nodes is not specified.

register_script(script: Union[bytes, str, memoryview]) → redis.commands.core.Script

Register a Lua script specifying the keys it will touch. Returns a Script object that is callable and hides the complexity of deal with scripts, keys, and shas. This is the preferred way to work with Lua scripts.

rename(src: Union[bytes, str, memoryview], dst: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Rename key src to dst

For more information check https://redis.io/commands/rename

renamenx(src: Union[bytes, str, memoryview], dst: Union[bytes, str, memoryview])

Rename key src to dst if dst doesn’t already exist

For more information check https://redis.io/commands/renamenx

replicaof(*args, **kwargs)

Update the replication settings of a redis replica, on the fly. Examples of valid arguments include:

NO ONE (set no replication) host port (set to the host and port of a redis server)

For more information check https://redis.io/commands/replicaof

reset() → Union[Awaitable, Any]

Perform a full reset on the connection’s server side contenxt.

See: https://redis.io/commands/reset

restore(name: Union[bytes, str, memoryview], ttl: float, value: Union[bytes, memoryview, str, int, float], replace: bool = False, absttl: bool = False, idletime: Optional[int] = None, frequency: Optional[int] = None) → Union[Awaitable, Any]

Create a key using the provided serialized value, previously obtained using DUMP.

replace allows an existing key on name to be overridden. If it’s not specified an error is raised on collision.

absttl if True, specified ttl should represent an absolute Unix timestamp in milliseconds in which the key will expire. (Redis 5.0 or greater).

idletime Used for eviction, this is the number of seconds the key must be idle, prior to execution.

frequency Used for eviction, this is the frequency counter of the object stored at the key, prior to execution.

For more information check https://redis.io/commands/restore

role() → Union[Awaitable, Any]

Provide information on the role of a Redis instance in the context of replication, by returning if the instance is currently a master, slave, or sentinel.

For more information check https://redis.io/commands/role

rpop(name: str, count: Optional[int] = None) → Union[str, List, None]

Removes and returns the last elements of the list name.

By default, the command pops a single element from the end of the list. When provided with the optional count argument, the reply will consist of up to count elements, depending on the list’s length.

For more information check https://redis.io/commands/rpop

rpoplpush(src: str, dst: str) → Union[Awaitable[str], str]

RPOP a value off of the src list and atomically LPUSH it on to the dst list. Returns the value.

For more information check https://redis.io/commands/rpoplpush

rpush(name: str, *values) → Union[Awaitable[int], int]

Push values onto the tail of the list name

For more information check https://redis.io/commands/rpush

rpushx(name: str, value: str) → Union[Awaitable[int], int]

Push value onto the tail of the list name if name exists

For more information check https://redis.io/commands/rpushx

sadd(name: str, *values) → Union[Awaitable[int], int]

Add value(s) to set name

For more information check https://redis.io/commands/sadd

save(**kwargs) → Union[Awaitable, Any]

Tell the Redis server to save its data to disk, blocking until the save is complete

For more information check https://redis.io/commands/save

scan(cursor: int = 0, match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None, _type: Optional[str] = None, **kwargs) → Union[Awaitable, Any]

Incrementally return lists of key names. Also return a cursor indicating the scan position.

match allows for filtering the keys by pattern

count provides a hint to Redis about the number of keys to
return per batch.
_type filters the returned values by a particular Redis type.
Stock Redis instances allow for the following types: HASH, LIST, SET, STREAM, STRING, ZSET Additionally, Redis modules can expose other types as well.

For more information check https://redis.io/commands/scan

scan_iter(match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None, _type: Optional[str] = None, **kwargs) → Iterator

Make an iterator using the SCAN command so that the client doesn’t need to remember the cursor position.

match allows for filtering the keys by pattern

count provides a hint to Redis about the number of keys to
return per batch.
_type filters the returned values by a particular Redis type.
Stock Redis instances allow for the following types: HASH, LIST, SET, STREAM, STRING, ZSET Additionally, Redis modules can expose other types as well.
scard(name: str) → Union[Awaitable[int], int]

Return the number of elements in set name

For more information check https://redis.io/commands/scard

script_exists(*args) → Union[Awaitable, Any]

Check if a script exists in the script cache by specifying the SHAs of each script as args. Returns a list of boolean values indicating if if each already script exists in the cache.

For more information check https://redis.io/commands/script-exists

script_flush(sync_type: Union[Literal[SYNC], Literal[ASYNC]] = None) → Union[Awaitable, Any]

Flush all scripts from the script cache. sync_type is by default SYNC (synchronous) but it can also be

ASYNC.

For more information check https://redis.io/commands/script-flush

script_kill() → Union[Awaitable, Any]

Kill the currently executing Lua script

For more information check https://redis.io/commands/script-kill

script_load(script: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Load a Lua script into the script cache. Returns the SHA.

For more information check https://redis.io/commands/script-load

sdiff(keys: List, *args) → Union[Awaitable[list], list]

Return the difference of sets specified by keys

For more information check https://redis.io/commands/sdiff

sdiffstore(dest: str, keys: List, *args) → Union[Awaitable[int], int]

Store the difference of sets specified by keys into a new set named dest. Returns the number of keys in the new set.

For more information check https://redis.io/commands/sdiffstore

select(index: int, **kwargs) → Union[Awaitable, Any]

Select the Redis logical database at index.

See: https://redis.io/commands/select

set(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float], ex: Union[float, datetime.timedelta, None] = None, px: Union[float, datetime.timedelta, None] = None, nx: bool = False, xx: bool = False, keepttl: bool = False, get: bool = False, exat: Union[int, datetime.datetime, None] = None, pxat: Union[int, datetime.datetime, None] = None) → Union[Awaitable, Any]

Set the value at key name to value

ex sets an expire flag on key name for ex seconds.

px sets an expire flag on key name for px milliseconds.

nx if set to True, set the value at key name to value only
if it does not exist.
xx if set to True, set the value at key name to value only
if it already exists.
keepttl if True, retain the time to live associated with the key.
(Available since Redis 6.0)
get if True, set the value at key name to value and return
the old value stored at key, or None if the key did not exist. (Available since Redis 6.2)
exat sets an expire flag on key name for ex seconds,
specified in unix time.
pxat sets an expire flag on key name for ex milliseconds,
specified in unix time.

For more information check https://redis.io/commands/set

setbit(name: Union[bytes, str, memoryview], offset: int, value: int) → Union[Awaitable, Any]

Flag the offset in name as value. Returns a boolean indicating the previous value of offset.

For more information check https://redis.io/commands/setbit

setex(name: Union[bytes, str, memoryview], time: Union[float, datetime.timedelta], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Set the value of key name to value that expires in time seconds. time can be represented by an integer or a Python timedelta object.

For more information check https://redis.io/commands/setex

setnx(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Set the value of key name to value if key doesn’t exist

For more information check https://redis.io/commands/setnx

setrange(name: Union[bytes, str, memoryview], offset: int, value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Overwrite bytes in the value of name starting at offset with value. If offset plus the length of value exceeds the length of the original value, the new value will be larger than before. If offset exceeds the length of the original value, null bytes will be used to pad between the end of the previous value and the start of what’s being injected.

Returns the length of the new string.

For more information check https://redis.io/commands/setrange

shutdown(save: bool = False, nosave: bool = False, **kwargs) → None

Shutdown the Redis server. If Redis has persistence configured, data will be flushed before shutdown. If the “save” option is set, a data flush will be attempted even if there is no persistence configured. If the “nosave” option is set, no data flush will be attempted. The “save” and “nosave” options cannot both be set.

For more information check https://redis.io/commands/shutdown

sinter(keys: List, *args) → Union[Awaitable[list], list]

Return the intersection of sets specified by keys

For more information check https://redis.io/commands/sinter

sintercard(numkeys: int, keys: List[str], limit: int = 0) → Union[Awaitable[int], int]

Return the cardinality of the intersect of multiple sets specified by ``keys`.

When LIMIT provided (defaults to 0 and means unlimited), if the intersection cardinality reaches limit partway through the computation, the algorithm will exit and yield limit as the cardinality

For more information check https://redis.io/commands/sintercard

sinterstore(dest: str, keys: List, *args) → Union[Awaitable[int], int]

Store the intersection of sets specified by keys into a new set named dest. Returns the number of keys in the new set.

For more information check https://redis.io/commands/sinterstore

sismember(name: str, value: str) → Union[Awaitable[bool], bool]

Return a boolean indicating if value is a member of set name

For more information check https://redis.io/commands/sismember

slaveof(*args, **kwargs)

Set the server to be a replicated slave of the instance identified by the host and port. If called without arguments, the instance is promoted to a master instead.

For more information check https://redis.io/commands/slaveof

slowlog_get(num: Optional[int] = None, **kwargs) → Union[Awaitable, Any]

Get the entries from the slowlog. If num is specified, get the most recent num items.

For more information check https://redis.io/commands/slowlog-get

slowlog_len(**kwargs) → Union[Awaitable, Any]

Get the number of items in the slowlog

For more information check https://redis.io/commands/slowlog-len

slowlog_reset(**kwargs) → Union[Awaitable, Any]

Remove all items in the slowlog

For more information check https://redis.io/commands/slowlog-reset

smembers(name: str) → Union[Awaitable[list], list]

Return all members of the set name

For more information check https://redis.io/commands/smembers

smismember(name: str, values: List, *args) → Union[Awaitable[List[bool]], List[bool]]

Return whether each value in values is a member of the set name as a list of bool in the order of values

For more information check https://redis.io/commands/smismember

smove(src: str, dst: str, value: str) → Union[Awaitable[bool], bool]

Move value from set src to set dst atomically

For more information check https://redis.io/commands/smove

sort(name: str, start: Optional[int] = None, num: Optional[int] = None, by: Optional[str] = None, get: Optional[List[str]] = None, desc: bool = False, alpha: bool = False, store: Optional[str] = None, groups: Optional[bool] = False) → Union[List, int]

Sort and return the list, set or sorted set at name.

start and num allow for paging through the sorted data

by allows using an external key to weight and sort the items.
Use an “*” to indicate where in the key the item value is located
get allows for returning items from external keys rather than the
sorted data itself. Use an “*” to indicate where in the key the item value is located

desc allows for reversing the sort

alpha allows for sorting lexicographically rather than numerically

store allows for storing the result of the sort into
the key store
groups if set to True and if get contains at least two
elements, sort will return a list of tuples, each containing the values fetched from the arguments to get.

For more information check https://redis.io/commands/sort

sort_ro(key: str, start: Optional[int] = None, num: Optional[int] = None, by: Optional[str] = None, get: Optional[List[str]] = None, desc: bool = False, alpha: bool = False) → list

Returns the elements contained in the list, set or sorted set at key. (read-only variant of the SORT command)

start and num allow for paging through the sorted data

by allows using an external key to weight and sort the items.
Use an “*” to indicate where in the key the item value is located
get allows for returning items from external keys rather than the
sorted data itself. Use an “*” to indicate where in the key the item value is located

desc allows for reversing the sort

alpha allows for sorting lexicographically rather than numerically

For more information check https://redis.io/commands/sort_ro

spop(name: str, count: Optional[int] = None) → Union[str, List, None]

Remove and return a random member of set name

For more information check https://redis.io/commands/spop

srandmember(name: str, number: Optional[int] = None) → Union[str, List, None]

If number is None, returns a random member of set name.

If number is supplied, returns a list of number random members of set name. Note this is only available when running Redis 2.6+.

For more information check https://redis.io/commands/srandmember

srem(name: str, *values) → Union[Awaitable[int], int]

Remove values from set name

For more information check https://redis.io/commands/srem

sscan(name: Union[bytes, str, memoryview], cursor: int = 0, match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None) → Union[Awaitable, Any]

Incrementally return lists of elements in a set. Also return a cursor indicating the scan position.

match allows for filtering the keys by pattern

count allows for hint the minimum number of returns

For more information check https://redis.io/commands/sscan

sscan_iter(name: Union[bytes, str, memoryview], match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None) → Iterator

Make an iterator using the SSCAN command so that the client doesn’t need to remember the cursor position.

match allows for filtering the keys by pattern

count allows for hint the minimum number of returns

stralgo(algo, value1, value2, specific_argument='strings', len=False, idx=False, minmatchlen=None, withmatchlen=False, **kwargs)

Implements complex algorithms that operate on strings. Right now the only algorithm implemented is the LCS algorithm (longest common substring). However new algorithms could be implemented in the future.

algo Right now must be LCS value1 and value2 Can be two strings or two keys specific_argument Specifying if the arguments to the algorithm will be keys or strings. strings is the default. len Returns just the len of the match. idx Returns the match positions in each string. minmatchlen Restrict the list of matches to the ones of a given minimal length. Can be provided only when idx set to True. withmatchlen Returns the matches with the len of the match. Can be provided only when idx set to True.

For more information check https://redis.io/commands/stralgo

strlen(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Return the number of bytes stored in the value of name

For more information check https://redis.io/commands/strlen

substr(name: Union[bytes, str, memoryview], start: int, end: int = -1) → Union[Awaitable, Any]

Return a substring of the string at key name. start and end are 0-based integers specifying the portion of the string to return.

sunion(keys: List, *args) → Union[Awaitable[List], List]

Return the union of sets specified by keys

For more information check https://redis.io/commands/sunion

sunionstore(dest: str, keys: List, *args) → Union[Awaitable[int], int]

Store the union of sets specified by keys into a new set named dest. Returns the number of keys in the new set.

For more information check https://redis.io/commands/sunionstore

swapdb(*args, **kwargs)

Swap two databases

For more information check https://redis.io/commands/swapdb

sync() → Union[Awaitable, Any]

Initiates a replication stream from the master.

For more information check https://redis.io/commands/sync

tdigest()

Access the bloom namespace.

time(**kwargs) → Union[Awaitable, Any]

Returns the server time as a 2-item tuple of ints: (seconds since epoch, microseconds into this second).

For more information check https://redis.io/commands/time

topk()

Access the bloom namespace.

touch(*keys)

Updates the last access time of given keys across the cluster.

The keys are first split up into slots and then an TOUCH command is sent for every slot

Non-existant keys are ignored. Returns the number of keys that were touched.

ts()

Access the timeseries namespace, providing support for redis timeseries data.

ttl(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns the number of seconds until the key name will expire

For more information check https://redis.io/commands/ttl

type(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns the type of key name

For more information check https://redis.io/commands/type

Remove the specified keys in a different thread.

The keys are first split up into slots and then an TOUCH command is sent for every slot

Non-existant keys are ignored. Returns the number of keys that were unlinked.

unwatch() → None

Unwatches the value at key name, or None of the key doesn’t exist

For more information check https://redis.io/commands/unwatch

wait(num_replicas: int, timeout: int, **kwargs) → Union[Awaitable, Any]

Redis synchronous replication That returns the number of replicas that processed the query when we finally have at least num_replicas, or when the timeout was reached.

For more information check https://redis.io/commands/wait

watch(*names) → None

Watches the values at keys names, or None if the key doesn’t exist

For more information check https://redis.io/commands/watch

xack(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], *ids) → Union[Awaitable, Any]

Acknowledges the successful processing of one or more messages. name: name of the stream. groupname: name of the consumer group. *ids: message ids to acknowledge.

For more information check https://redis.io/commands/xack

xadd(name: Union[bytes, str, memoryview], fields: Dict[Union[bytes, memoryview, str, int, float], Union[bytes, memoryview, str, int, float]], id: Union[int, bytes, str, memoryview] = '*', maxlen: Optional[int] = None, approximate: bool = True, nomkstream: bool = False, minid: Union[int, bytes, str, memoryview, None] = None, limit: Optional[int] = None) → Union[Awaitable, Any]

Add to a stream. name: name of the stream fields: dict of field/value pairs to insert into the stream id: Location to insert this record. By default it is appended. maxlen: truncate old stream members beyond this size. Can’t be specified with minid. approximate: actual stream length may be slightly more than maxlen nomkstream: When set to true, do not make a stream minid: the minimum id in the stream to query. Can’t be specified with maxlen. limit: specifies the maximum number of entries to retrieve

For more information check https://redis.io/commands/xadd

xautoclaim(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], consumername: Union[bytes, str, memoryview], min_idle_time: int, start_id: int = 0, count: Optional[int] = None, justid: bool = False) → Union[Awaitable, Any]

Transfers ownership of pending stream entries that match the specified criteria. Conceptually, equivalent to calling XPENDING and then XCLAIM, but provides a more straightforward way to deal with message delivery failures via SCAN-like semantics. name: name of the stream. groupname: name of the consumer group. consumername: name of a consumer that claims the message. min_idle_time: filter messages that were idle less than this amount of milliseconds. start_id: filter messages with equal or greater ID. count: optional integer, upper limit of the number of entries that the command attempts to claim. Set to 100 by default. justid: optional boolean, false by default. Return just an array of IDs of messages successfully claimed, without returning the actual message

For more information check https://redis.io/commands/xautoclaim

xclaim(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], consumername: Union[bytes, str, memoryview], min_idle_time: int, message_ids: [typing.List[typing.Union[int, bytes, str, memoryview]], typing.Tuple[typing.Union[int, bytes, str, memoryview]]], idle: Optional[int] = None, time: Optional[int] = None, retrycount: Optional[int] = None, force: bool = False, justid: bool = False) → Union[Awaitable, Any]

Changes the ownership of a pending message. name: name of the stream. groupname: name of the consumer group. consumername: name of a consumer that claims the message. min_idle_time: filter messages that were idle less than this amount of milliseconds message_ids: non-empty list or tuple of message IDs to claim idle: optional. Set the idle time (last time it was delivered) of the

message in ms
time: optional integer. This is the same as idle but instead of a
relative amount of milliseconds, it sets the idle time to a specific Unix time (in milliseconds).
retrycount: optional integer. set the retry counter to the specified
value. This counter is incremented every time a message is delivered again.
force: optional boolean, false by default. Creates the pending message
entry in the PEL even if certain specified IDs are not already in the PEL assigned to a different client.
justid: optional boolean, false by default. Return just an array of IDs

of messages successfully claimed, without returning the actual message

For more information check https://redis.io/commands/xclaim

xdel(name: Union[bytes, str, memoryview], *ids) → Union[Awaitable, Any]

Deletes one or more messages from a stream. name: name of the stream. *ids: message ids to delete.

For more information check https://redis.io/commands/xdel

xgroup_create(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], id: Union[int, bytes, str, memoryview] = '$', mkstream: bool = False) → Union[Awaitable, Any]

Create a new consumer group associated with a stream. name: name of the stream. groupname: name of the consumer group. id: ID of the last item in the stream to consider already delivered.

For more information check https://redis.io/commands/xgroup-create

xgroup_createconsumer(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], consumername: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Consumers in a consumer group are auto-created every time a new consumer name is mentioned by some command. They can be explicitly created by using this command. name: name of the stream. groupname: name of the consumer group. consumername: name of consumer to create.

See: https://redis.io/commands/xgroup-createconsumer

xgroup_delconsumer(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], consumername: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Remove a specific consumer from a consumer group. Returns the number of pending messages that the consumer had before it was deleted. name: name of the stream. groupname: name of the consumer group. consumername: name of consumer to delete

For more information check https://redis.io/commands/xgroup-delconsumer

xgroup_destroy(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Destroy a consumer group. name: name of the stream. groupname: name of the consumer group.

For more information check https://redis.io/commands/xgroup-destroy

xgroup_setid(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], id: Union[int, bytes, str, memoryview]) → Union[Awaitable, Any]

Set the consumer group last delivered ID to something else. name: name of the stream. groupname: name of the consumer group. id: ID of the last item in the stream to consider already delivered.

For more information check https://redis.io/commands/xgroup-setid

xinfo_consumers(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns general information about the consumers in the group. name: name of the stream. groupname: name of the consumer group.

For more information check https://redis.io/commands/xinfo-consumers

xinfo_groups(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns general information about the consumer groups of the stream. name: name of the stream.

For more information check https://redis.io/commands/xinfo-groups

xinfo_stream(name: Union[bytes, str, memoryview], full: bool = False) → Union[Awaitable, Any]

Returns general information about the stream. name: name of the stream. full: optional boolean, false by default. Return full summary

For more information check https://redis.io/commands/xinfo-stream

xlen(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns the number of elements in a given stream.

For more information check https://redis.io/commands/xlen

xpending(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Returns information about pending messages of a group. name: name of the stream. groupname: name of the consumer group.

For more information check https://redis.io/commands/xpending

xpending_range(name: Union[bytes, str, memoryview], groupname: Union[bytes, str, memoryview], min: Union[int, bytes, str, memoryview], max: Union[int, bytes, str, memoryview], count: int, consumername: Union[bytes, str, memoryview, None] = None, idle: Optional[int] = None) → Union[Awaitable, Any]

Returns information about pending messages, in a range.

name: name of the stream. groupname: name of the consumer group. idle: available from version 6.2. filter entries by their idle-time, given in milliseconds (optional). min: minimum stream ID. max: maximum stream ID. count: number of messages to return consumername: name of a consumer to filter by (optional).

xrange(name: Union[bytes, str, memoryview], min: Union[int, bytes, str, memoryview] = '-', max: Union[int, bytes, str, memoryview] = '+', count: Optional[int] = None) → Union[Awaitable, Any]

Read stream values within an interval. name: name of the stream. start: first stream ID. defaults to ‘-‘,

meaning the earliest available.
finish: last stream ID. defaults to ‘+’,
meaning the latest available.
count: if set, only return this many items, beginning with the
earliest available.

For more information check https://redis.io/commands/xrange

xread(streams: Dict[Union[bytes, str, memoryview], Union[int, bytes, str, memoryview]], count: Optional[int] = None, block: Optional[int] = None) → Union[Awaitable, Any]

Block and monitor multiple streams for new data. streams: a dict of stream names to stream IDs, where

IDs indicate the last ID already seen.
count: if set, only return this many items, beginning with the
earliest available.

block: number of milliseconds to wait, if nothing already present.

For more information check https://redis.io/commands/xread

xreadgroup(groupname: str, consumername: str, streams: Dict[Union[bytes, str, memoryview], Union[int, bytes, str, memoryview]], count: Optional[int] = None, block: Optional[int] = None, noack: bool = False) → Union[Awaitable, Any]

Read from a stream via a consumer group. groupname: name of the consumer group. consumername: name of the requesting consumer. streams: a dict of stream names to stream IDs, where

IDs indicate the last ID already seen.
count: if set, only return this many items, beginning with the
earliest available.

block: number of milliseconds to wait, if nothing already present. noack: do not add messages to the PEL

For more information check https://redis.io/commands/xreadgroup

xrevrange(name: Union[bytes, str, memoryview], max: Union[int, bytes, str, memoryview] = '+', min: Union[int, bytes, str, memoryview] = '-', count: Optional[int] = None) → Union[Awaitable, Any]

Read stream values within an interval, in reverse order. name: name of the stream start: first stream ID. defaults to ‘+’,

meaning the latest available.
finish: last stream ID. defaults to ‘-‘,
meaning the earliest available.
count: if set, only return this many items, beginning with the
latest available.

For more information check https://redis.io/commands/xrevrange

xtrim(name: Union[bytes, str, memoryview], maxlen: int, approximate: bool = True, minid: Union[int, bytes, str, memoryview, None] = None, limit: Optional[int] = None) → Union[Awaitable, Any]

Trims old messages from a stream. name: name of the stream. maxlen: truncate old stream messages beyond this size Can’t be specified with minid. approximate: actual stream length may be slightly more than maxlen minid: the minimum id in the stream to query Can’t be specified with maxlen. limit: specifies the maximum number of entries to retrieve

For more information check https://redis.io/commands/xtrim

zadd(name: Union[bytes, str, memoryview], mapping: Mapping[AnyKeyT, Union[bytes, memoryview, str, int, float]], nx: bool = False, xx: bool = False, ch: bool = False, incr: bool = False, gt: bool = None, lt: bool = None) → Union[Awaitable, Any]

Set any number of element-name, score pairs to the key name. Pairs are specified as a dict of element-names keys to score values.

nx forces ZADD to only create new elements and not to update scores for elements that already exist.

xx forces ZADD to only update scores of elements that already exist. New elements will not be added.

ch modifies the return value to be the numbers of elements changed. Changed elements include new elements that were added and elements whose scores changed.

incr modifies ZADD to behave like ZINCRBY. In this mode only a single element/score pair can be specified and the score is the amount the existing score will be incremented by. When using this mode the return value of ZADD will be the new score of the element.

LT Only update existing elements if the new score is less than the current score. This flag doesn’t prevent adding new elements.

GT Only update existing elements if the new score is greater than the current score. This flag doesn’t prevent adding new elements.

The return value of ZADD varies based on the mode specified. With no options, ZADD returns the number of new elements added to the sorted set.

NX, LT, and GT are mutually exclusive options.

See: https://redis.io/commands/ZADD

zcard(name: Union[bytes, str, memoryview]) → Union[Awaitable, Any]

Return the number of elements in the sorted set name

For more information check https://redis.io/commands/zcard

zcount(name: Union[bytes, str, memoryview], min: Union[float, str], max: Union[float, str]) → Union[Awaitable, Any]

Returns the number of elements in the sorted set at key name with a score between min and max.

For more information check https://redis.io/commands/zcount

zdiff(keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]], withscores: bool = False) → Union[Awaitable, Any]

Returns the difference between the first and all successive input sorted sets provided in keys.

For more information check https://redis.io/commands/zdiff

zdiffstore(dest: Union[bytes, str, memoryview], keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]]) → Union[Awaitable, Any]

Computes the difference between the first and all successive input sorted sets provided in keys and stores the result in dest.

For more information check https://redis.io/commands/zdiffstore

zincrby(name: Union[bytes, str, memoryview], amount: float, value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Increment the score of value in sorted set name by amount

For more information check https://redis.io/commands/zincrby

zinter(keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]], aggregate: Optional[str] = None, withscores: bool = False) → Union[Awaitable, Any]

Return the intersect of multiple sorted sets specified by keys. With the aggregate option, it is possible to specify how the results of the union are aggregated. This option defaults to SUM, where the score of an element is summed across the inputs where it exists. When this option is set to either MIN or MAX, the resulting set will contain the minimum or maximum score of an element across the inputs where it exists.

For more information check https://redis.io/commands/zinter

zintercard(numkeys: int, keys: List[str], limit: int = 0) → Union[Awaitable[int], int]

Return the cardinality of the intersect of multiple sorted sets specified by ``keys`. When LIMIT provided (defaults to 0 and means unlimited), if the intersection cardinality reaches limit partway through the computation, the algorithm will exit and yield limit as the cardinality

For more information check https://redis.io/commands/zintercard

zinterstore(dest: Union[bytes, str, memoryview], keys: Union[Sequence[Union[bytes, str, memoryview]], Mapping[AnyKeyT, float]], aggregate: Optional[str] = None) → Union[Awaitable, Any]

Intersect multiple sorted sets specified by keys into a new sorted set, dest. Scores in the destination will be aggregated based on the aggregate. This option defaults to SUM, where the score of an element is summed across the inputs where it exists. When this option is set to either MIN or MAX, the resulting set will contain the minimum or maximum score of an element across the inputs where it exists.

For more information check https://redis.io/commands/zinterstore

zlexcount(name, min, max)

Return the number of items in the sorted set name between the lexicographical range min and max.

For more information check https://redis.io/commands/zlexcount

zmpop(num_keys: int, keys: List[str], min: Optional[bool] = False, max: Optional[bool] = False, count: Optional[int] = 1) → Union[Awaitable[list], list]

Pop count values (default 1) off of the first non-empty sorted set named in the keys list. For more information check https://redis.io/commands/zmpop

zmscore(key: Union[bytes, str, memoryview], members: List[str]) → Union[Awaitable, Any]

Returns the scores associated with the specified members in the sorted set stored at key. members should be a list of the member name. Return type is a list of score. If the member does not exist, a None will be returned in corresponding position.

For more information check https://redis.io/commands/zmscore

zpopmax(name: Union[bytes, str, memoryview], count: Optional[int] = None) → Union[Awaitable, Any]

Remove and return up to count members with the highest scores from the sorted set name.

For more information check https://redis.io/commands/zpopmax

zpopmin(name: Union[bytes, str, memoryview], count: Optional[int] = None) → Union[Awaitable, Any]

Remove and return up to count members with the lowest scores from the sorted set name.

For more information check https://redis.io/commands/zpopmin

zrandmember(key: Union[bytes, str, memoryview], count: int = None, withscores: bool = False) → Union[Awaitable, Any]

Return a random element from the sorted set value stored at key.

count if the argument is positive, return an array of distinct fields. If called with a negative count, the behavior changes and the command is allowed to return the same field multiple times. In this case, the number of returned fields is the absolute value of the specified count.

withscores The optional WITHSCORES modifier changes the reply so it includes the respective scores of the randomly selected elements from the sorted set.

For more information check https://redis.io/commands/zrandmember

zrange(name: Union[bytes, str, memoryview], start: int, end: int, desc: bool = False, withscores: bool = False, score_cast_func: Union[type, Callable] = <class 'float'>, byscore: bool = False, bylex: bool = False, offset: int = None, num: int = None) → Union[Awaitable, Any]

Return a range of values from sorted set name between start and end sorted in ascending order.

start and end can be negative, indicating the end of the range.

desc a boolean indicating whether to sort the results in reversed order.

withscores indicates to return the scores along with the values. The return type is a list of (value, score) pairs.

score_cast_func a callable used to cast the score return value.

byscore when set to True, returns the range of elements from the sorted set having scores equal or between start and end.

bylex when set to True, returns the range of elements from the sorted set between the start and end lexicographical closed range intervals. Valid start and end must start with ( or [, in order to specify whether the range interval is exclusive or inclusive, respectively.

offset and num are specified, then return a slice of the range. Can’t be provided when using bylex.

For more information check https://redis.io/commands/zrange

zrangebylex(name: Union[bytes, str, memoryview], min: Union[bytes, memoryview, str, int, float], max: Union[bytes, memoryview, str, int, float], start: Optional[int] = None, num: Optional[int] = None) → Union[Awaitable, Any]

Return the lexicographical range of values from sorted set name between min and max.

If start and num are specified, then return a slice of the range.

For more information check https://redis.io/commands/zrangebylex

zrangebyscore(name: Union[bytes, str, memoryview], min: Union[float, str], max: Union[float, str], start: Optional[int] = None, num: Optional[int] = None, withscores: bool = False, score_cast_func: Union[type, Callable] = <class 'float'>) → Union[Awaitable, Any]

Return a range of values from the sorted set name with scores between min and max.

If start and num are specified, then return a slice of the range.

withscores indicates to return the scores along with the values. The return type is a list of (value, score) pairs

score_cast_func` a callable used to cast the score return value

For more information check https://redis.io/commands/zrangebyscore

zrangestore(dest: Union[bytes, str, memoryview], name: Union[bytes, str, memoryview], start: int, end: int, byscore: bool = False, bylex: bool = False, desc: bool = False, offset: Optional[int] = None, num: Optional[int] = None) → Union[Awaitable, Any]

Stores in dest the result of a range of values from sorted set name between start and end sorted in ascending order.

start and end can be negative, indicating the end of the range.

byscore when set to True, returns the range of elements from the sorted set having scores equal or between start and end.

bylex when set to True, returns the range of elements from the sorted set between the start and end lexicographical closed range intervals. Valid start and end must start with ( or [, in order to specify whether the range interval is exclusive or inclusive, respectively.

desc a boolean indicating whether to sort the results in reversed order.

offset and num are specified, then return a slice of the range. Can’t be provided when using bylex.

For more information check https://redis.io/commands/zrangestore

zrank(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Returns a 0-based value indicating the rank of value in sorted set name

For more information check https://redis.io/commands/zrank

zrem(name: Union[bytes, str, memoryview], *values) → Union[Awaitable, Any]

Remove member values from sorted set name

For more information check https://redis.io/commands/zrem

zremrangebylex(name: Union[bytes, str, memoryview], min: Union[bytes, memoryview, str, int, float], max: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Remove all elements in the sorted set name between the lexicographical range specified by min and max.

Returns the number of elements removed.

For more information check https://redis.io/commands/zremrangebylex

zremrangebyrank(name: Union[bytes, str, memoryview], min: int, max: int) → Union[Awaitable, Any]

Remove all elements in the sorted set name with ranks between min and max. Values are 0-based, ordered from smallest score to largest. Values can be negative indicating the highest scores. Returns the number of elements removed

For more information check https://redis.io/commands/zremrangebyrank

zremrangebyscore(name: Union[bytes, str, memoryview], min: Union[float, str], max: Union[float, str]) → Union[Awaitable, Any]

Remove all elements in the sorted set name with scores between min and max. Returns the number of elements removed.

For more information check https://redis.io/commands/zremrangebyscore

zrevrange(name: Union[bytes, str, memoryview], start: int, end: int, withscores: bool = False, score_cast_func: Union[type, Callable] = <class 'float'>) → Union[Awaitable, Any]

Return a range of values from sorted set name between start and end sorted in descending order.

start and end can be negative, indicating the end of the range.

withscores indicates to return the scores along with the values The return type is a list of (value, score) pairs

score_cast_func a callable used to cast the score return value

For more information check https://redis.io/commands/zrevrange

zrevrangebylex(name: Union[bytes, str, memoryview], max: Union[bytes, memoryview, str, int, float], min: Union[bytes, memoryview, str, int, float], start: Optional[int] = None, num: Optional[int] = None) → Union[Awaitable, Any]

Return the reversed lexicographical range of values from sorted set name between max and min.

If start and num are specified, then return a slice of the range.

For more information check https://redis.io/commands/zrevrangebylex

zrevrangebyscore(name: Union[bytes, str, memoryview], max: Union[float, str], min: Union[float, str], start: Optional[int] = None, num: Optional[int] = None, withscores: bool = False, score_cast_func: Union[type, Callable] = <class 'float'>)

Return a range of values from the sorted set name with scores between min and max in descending order.

If start and num are specified, then return a slice of the range.

withscores indicates to return the scores along with the values. The return type is a list of (value, score) pairs

score_cast_func a callable used to cast the score return value

For more information check https://redis.io/commands/zrevrangebyscore

zrevrank(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Returns a 0-based value indicating the descending rank of value in sorted set name

For more information check https://redis.io/commands/zrevrank

zscan(name: Union[bytes, str, memoryview], cursor: int = 0, match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None, score_cast_func: Union[type, Callable] = <class 'float'>) → Union[Awaitable, Any]

Incrementally return lists of elements in a sorted set. Also return a cursor indicating the scan position.

match allows for filtering the keys by pattern

count allows for hint the minimum number of returns

score_cast_func a callable used to cast the score return value

For more information check https://redis.io/commands/zscan

zscan_iter(name: Union[bytes, str, memoryview], match: Union[bytes, str, memoryview, None] = None, count: Optional[int] = None, score_cast_func: Union[type, Callable] = <class 'float'>) → Iterator

Make an iterator using the ZSCAN command so that the client doesn’t need to remember the cursor position.

match allows for filtering the keys by pattern

count allows for hint the minimum number of returns

score_cast_func a callable used to cast the score return value

zscore(name: Union[bytes, str, memoryview], value: Union[bytes, memoryview, str, int, float]) → Union[Awaitable, Any]

Return the score of element value in sorted set name

For more information check https://redis.io/commands/zscore

zunion(keys: Union[Sequence[Union[bytes, str, memoryview]], Mapping[AnyKeyT, float]], aggregate: Optional[str] = None, withscores: bool = False) → Union[Awaitable, Any]

Return the union of multiple sorted sets specified by keys. keys can be provided as dictionary of keys and their weights. Scores will be aggregated based on the aggregate, or SUM if none is provided.

For more information check https://redis.io/commands/zunion

zunionstore(dest: Union[bytes, str, memoryview], keys: Union[Sequence[Union[bytes, str, memoryview]], Mapping[AnyKeyT, float]], aggregate: Optional[str] = None) → Union[Awaitable, Any]

Union multiple sorted sets specified by keys into a new sorted set, dest. Scores in the destination will be aggregated based on the aggregate, or SUM if none is provided.

For more information check https://redis.io/commands/zunionstore