Skip to content

den-t/tredis

 
 

Repository files navigation

TRedis

An asynchronous Redis client for Tornado

Version Downloads PythonVersions Status Coverage Code Climate Code issues

Documentation is available at tredis.readthedocs.org.

Commands Implemented

TRedis is a work in progress and not all commands are implemented. The following list details each command category and the number of commands implemented in each.

If you need functionality that is not yet implemented, follow the patterns for the category mixins that are complete and submit a PR!

Category Count
Cluster 0 of 20
Connection 5 of 5
Geo 0 of 6
Hashes 0 of 15
HyperLogLog 3 of 3
Keys 22 of 22
Lists 0 of 17
Pub/Sub 0 of 6
Scripting 6 of 6
Server 6 of 30
Sets 15 of 15
Sorted Sets 3 of 21
Strings 23 of 23
Transactions 0 of 5

For information on local development or contributing, see CONTRIBUTING.rst

Example

client = tredis.RedisClient()

yield client.set('foo', 'bar')
value = yield client.get('foo')

About

An asynchronous Redis client for Tornado

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.8%
  • Shell 1.2%