Unrecognized option or bad number of args for: '--cluster'
解决方法:
在windows使用redis-cli --cluster create 127.0.0.1:7000 127.0.0.1:7001 127.0.0.1:7002 127.0.0.1:7003 127.0.0.1:7004 127.0.0.1:7005 --cluster-replicas 1创建集群时报错:Unrecognized option or bad number of args for: '--cluster'
原因是redis-5.0.0版本开始才支持“--cluster”,而windows最新的版本才是3.2.100,所以windows暂时不能使用redis-cli来集群,可通过redis-trib.rb create --replicas 1 127.0.0.1:7000 127.0.0.1:7001 127.0.0.1:7002 127.0.0.1:7003 127.0.0.1:7004 127.0.0.1:7005,但是要安装Ruby,如果windows安装集群请参考:http://www.yayihouse.com/yayishuwu/chapter/2416