Hello there. I need to get data from Redis server which has a TLS enabled and authentication with username and password.
I’m trying to use redisFeeder but I can’t understand how to make it to auth.
val redisPool =
RedisClientPool(“myHostAddress”, 6379)
.withMaxIdle(8)
.withDatabase(0)
.withSecret(null)
.withTimeout(0)
.withMaxConnections(-1)
.withPoolWaitTimeout(3000)
.withSSLContext(null)
.withBatchMode(false)
redisFeeder(redisPool, “foo”, “foo”).RPOPLPUSH()
What should I put in withSecret and withSSLContext?