How do I configure the finagle Redis client with tls-enabled?
@Provides
def providesRedisClient(@Flag("redis-addr") host: String): redis.Client = {
redis.Client(host)
}
as the function we used only took redis-endpiont.
How do I configure the finagle Redis client with tls-enabled?
@Provides
def providesRedisClient(@Flag("redis-addr") host: String): redis.Client = {
redis.Client(host)
}
as the function we used only took redis-endpiont.
found following solution (just replace redis.Client(host) with the code below):