Существует множество примеров и ресурсов для подключения к «серверу» Redis, но не к «кластеру» Redis.
Сейчас у меня есть:
const redis = require("redis");
const client = redis.createClient({
port : 6379, // replace with your port
host : '10.0.0.100', // replace with your hostanme or IP address
password : 'Notforyou', // replace with your password
// optional, if using SSL
// use `fs.readFile[Sync]` or another method to bring these values in
tls : {
key : stringValueOfKeyFile,
cert : stringValueOfCertFile,
ca : [ stringValueOfCaCertFile ]
}
});
Но это для одного сервера Redis, а не для кластера. Как мне go подключиться к моему кластеру?