Redis 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') .. autoclass:: redis.commands.core.CoreCommands :inherited-members: