Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

p0is0n/txredis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

txredis

Asynchronous Redis client for Twisted.

Usage

from twisted.internet.address import IPv4Address
from txredis.client import RedisConnectionPool

redis = (RedisConnectionPool(
	IPv4Address('TCP', '127.0.0.1', 6312),
	db=1,
	poolsize=10,
	password=None
))

deferred = redis.get('foo')

About

Asynchronous Redis client for Twisted.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages