直接执行命令
Redis-py 提供了 execute_command
方法来直接调用 Redis 操作。此功能可用于访问 redis-py 客户端中可能没有支持接口的任何模块。例如,你可以使用 execute_command
列出加载到 Redis 服务器中的所有模块:
r.execute_command('MODULE', 'LIST')
Redis-py 提供了 execute_command
方法来直接调用 Redis 操作。此功能可用于访问 redis-py 客户端中可能没有支持接口的任何模块。例如,你可以使用 execute_command
列出加载到 Redis 服务器中的所有模块:
r.execute_command('MODULE', 'LIST')