kalpanathanneeru

Results 3 comments of kalpanathanneeru

Hi, even cluster command also not working 127.0.0.1:7617> cluster nodes ERR unknown command 'cluster' Any idea to support

Thanks for update.. But java redis cluster client trying to execute **cluster nodes/cluster info** to verify is redis in standalone or cluster mode while connecting to cluster mode redis server...

**code snippet:** String passwordkey = "demo12"; RedisClusterClient client = RedisClusterClient.create("redis://"+passwordkey+"@100.192.5.6:7617/"); StatefulRedisClusterConnection connection = client.connect(); connection.setReadFrom(ReadFrom.REPLICA_PREFERRED); System.out.println("Connected to Redis"); RedisAdvancedClusterCommands sync = connection.sync(); sync.set("key", "value"); System.out.println("get value:"+ sync.get("key").toString()); connection.close(); client.shutdown(); **Error:**...