0

使用 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'
4

1 回答 1

0

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

于 2012-05-30T12:36:47.093 回答