1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Redis Commands
##############
Core Commands
*************
The following functions can be used to replicate their equivalent `Redis command <https://redis.io/commands>`_. 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:
Sentinel Commands
*****************
.. autoclass:: redis.commands.sentinel.SentinelCommands
:inherited-members:
Redis Cluster Commands
**********************
The following `Redis commands <https://redis.io/commands>`_ are available within a `Redis Cluster <https://redis.io/topics/cluster-tutorial>`_. Generally they can be used as functions on your redis connection.
.. autoclass:: redis.commands.cluster.RedisClusterCommands
:inherited-members:
|