python3 rediscluster unknow command "CONFIG" 采坑

__REDIS_CON = StrictRedisCluster(

startup_nodes=[{"host": "221.122.111.103","port": "14000"},{"host": "221.122.127.222","port": "14000"}],

    skip_full_coverage_check=True,

    max_connections=20)

随着导入的不同的redis版本会报未知的  unknow command "CONFIG"

debug进入源码会发现 redis集群链接会默认进行请求测试  执行的指令是 "CONFIG GET" 

所以redis报错,我们平时指令都是 get set 之类的 很显然不知道 config get 是啥,所以配置一个跳过检查的参数 skip_full_coverage_check=True  就可以了

你可能感兴趣的:(python3 rediscluster unknow command "CONFIG" 采坑)