EugeneTorap commented on PR #23931: URL: https://github.com/apache/superset/pull/23931#issuecomment-1535391719
Hi @sinhashubham95! Where do we use `rediscluster` lib? New version of Redis supports the cluster. ```python from redis.cluster import RedisCluster rc = RedisCluster(host='localhost', port=16379) print(rc.get_nodes()) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
