python连接redis 多个db_在Redis Python中创建和管理多个连接

我正在使用Redis通过Redis-py客户端库存储两个数据库:0和1

。我想为每个数据库创建两个连接。目前,我正在这样做:

>>> connection0 = redis.Connection(host = 'localhost', port = 6379, db = 0)

>>> connection1 = redis.Connection(host = 'localhost', port = 6379, db = 1)

>>> connection0.connect()

但是,我似乎找不到从连接创建Redis对象的方法。

>>> store0 = redis.Redis(connection0)

>>> store0.info()

Traceback (most recent call last):

File "", line 1, in

File "/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/redis-2.4.11-py2.7.egg/redis/client.py", line 341, in info

return self.execute_command('INFO')

File "/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/redis-2.4.11-py2.7.egg/redis/client.py", line 278, in execute_command

connection.send_command(*args)

File "/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/redis-2.4.11-py2.7.egg/redis/connection.py", line 258, in send_command

self.send_packed_command(self.pack_command(*args))

File "/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/redis-2.4.11-py2.7.egg/redis/connection.py", line 241, in send_packed_command

self.connect()

File "/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/redis-2.4.11-py2.7.egg/redis/connection.py", line 187, in connect

sock = self._connect()

File "/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/site-packages/redis-2.4.11-py2.7.egg/redis/connection.py", line 198, in _connect

sock.connect((self.host, self.port))

File "/Library/Frameworks/Python.framework/Versions/7.0/lib/python2.7/socket.py", line 224, in meth

return getattr(self._sock,name)(*args)

TypeError: coercing to Unicode: need string or buffer, Connection found

我在这里犯一个菜鸟错误吗?

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值