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')
.. autoclass:: redis.commands.core.CoreCommands :inherited-members:
.. autoclass:: redis.commands.sentinel.SentinelCommands :inherited-members:
The following Redis commands are available within a Redis Cluster. Generally they can be used as functions on your redis connection.
.. autoclass:: redis.commands.cluster.RedisClusterCommands :inherited-members: