![[R logo]](../../../doc/html/logo.jpg)
| redis-package | An R client for Redis |
| redis | An R client for Redis |
| redisAuth | Redis authentication. |
| redisBgRewriteAOF | redisBgRewriteAOF |
| redisBgSave | redisBgSave |
| redisBLPop | Blocking List Pop |
| redisBRPop | Blocking List Pop |
| redisClose | Close an open connection to a Redis server. |
| redisConnect | Connect to a Redis server. |
| redisDBSize | Return the number of keys in the current Redis database. |
| redisDecr | Decrement a value by one. |
| redisDecrBy | Decrement a value by the specified value. |
| redisDelete | Delete a key and associated value from Redis. |
| redisExists | Test the existence of a key in the Redis database. |
| redisExpire | Set a timeout on the specified key. |
| redisExpireAt | Set a timeout on the specified key. |
| redisFlushAll | Delete all keys and values from all databases. |
| redisFlushDB | Delete all keys and values from the current database. |
| redisGet | Retrieve a value from Redis. |
| redisGetSet | Store a value in Redis, returning the previously defined value. |
| redisIncr | Increment a value by one. |
| redisIncrBy | Increment a value by the specified value. |
| redisInfo | redisInfo |
| redisKeys | Return a list of all keys in the active Redis database. |
| redisLIndex | Retrieve a value from a Redis 'list.' |
| redisLLen | Redis list length. |
| redisLPop | Remove the first element from a list. |
| redisLPush | Add a value to the tail of a list. |
| redisLRange | Copy values from a list. |
| redisLRem | Remove elements from a list. |
| redisLSet | Set a value within a list. |
| redisLTrim | Trim a list. |
| redisMGet | Retrieve one or more values from Redis. |
| redisMove | Move the specified key/value pair to another database. |
| redisMSet | Set one or more key/value pairs in the Redis database. |
| redisRandomKey | Return a randomly selected key from the currently selected database. |
| redisRename | Rename a key. |
| redisRPop | Remove the last element from a list. |
| redisRPopLPush | Remove the tail from a list, pushing to another. |
| redisRPush | Add a value to the head of a list. |
| redisSAdd | Add an element to a set. |
| redisSave | redisSave |
| redisSCard | Set cardinality |
| redisSDiff | Return the difference of two or more sets. |
| redisSDiffStore | Store the difference of two or more sets. |
| redisSelect | Select a redis database. |
| redisSet | Store a value in Redis. |
| redisShutdown | redisShutdown |
| redisSInter | Find and return the intersection of two or more sets. |
| redisSInterStore | Store intersection of two or more sets. |
| redisSIsMember | Test for set membership |
| redisSlaveOf | redisSlaveOf |
| redisSMembers | List elements of a set. |
| redisSMove | Move a set element. |
| redisSPop | Remove and return an element from a set. |
| redisSRandMember | Choose a random element from a set |
| redisSRem | Remove an element from a set. |
| redisSUnion | Return the union of two or more sets. |
| redisSUnionStore | Store the union of two or more sets. |
| redisTTL | Return the time to live for a key set to expire. |
| redisType | Query a Redis value type. |