找不到redis send_command错误

时间:2012-05-30 11:55:07

标签: python redis

使用redis并遵循http://nullege.com/codes/search/redis.Redis.send_command

中的教程

尝试此示例时:

results = r.send_command(
        'ZRANGEBYSCORE %s 0 %s LIMIT 0 %s\r\n' % (
            qk,
            ts,
            limit

在我的情况下,我得到了:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'Redis' object has no attribute 'send_command'

1 个答案:

答案 0 :(得分:0)

redis.Redis没有方法send_command()。这是Connection类的一种方法。 https://github.com/andymccurdy/redis-py/blob/master/redis/connection.py