Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用Dynamic Redis为 redis 添加了额外的功能。我可以使用 redis-cli 中的命令。是否可以使用 redis-py 在 python 脚本中使用这些新命令?
找到了答案。只需扩展其中一个客户端类(StrictRedis 或 Redis)并使用它们的 execute_command 方法。
redis_client = redis.StrictRedis(host, port, db) data = redis_client.execute_command('custom redis command')
https://github.com/andymccurdy/redis-py/issues/632