Redis 的 Python 客户端:credis
jopen
9年前
credis 是使用 cython 开发的 Redis 的 Python 客户端开发包。
示例代码:
>>> from credis import Connection >>> conn = Connection(host='127.0.0.1', port=6379) >>> conn.execute('set', 'test', 1) 'OK' >>> conn.execute('get', 'test') '1'
connection pool for gevent
>>> from credis.geventpool import ResourcePool >>> pool = ResourcePool(32, Connection, host='127.0.0.1', port=6379) >>> with pool.ctx() as conn: ... conn.execute('get', 'test') '1' >>> pool.execute('get', 'test') '1' >>> commands = [('get', 'test%d'%i) for i in range(3)] >>> pool.execute_pipeline(*commands) ('1', '2', '3')
execute pipelined commands
>>> commands = [('set', 'test%d'%i, i) for i in range(3)] >>> conn.execute_pipeline(*commands) ('OK', 'OK', 'OK')