使用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'
答案 0 :(得分:0)
redis.Redis没有方法send_command()。这是Connection类的一种方法。 https://github.com/andymccurdy/redis-py/blob/master/redis/connection.py