We are using Hangfire pro and AWS Elasticache redis cluster for storage
Our AWS Elasticache redis cluster is protected with authentication. When we try to use the StackExchange Redis configuration link below to pass username and password.
StackExchange.Redis
Hangfire complains that its unable to understand “user”
The hangfire code snippet is listed below
“HangfireConnection”: “aws_cluster_endpoint_primary:6379,ssl=true,user=XX,password=YY”
we pass the above connection string to GlobalConfiguration.Configuration.UseRedisStorage(…);
I also checked Hangfire’s documentation and its muted on how to pass username/password except in one location
[Using Redis — Hangfire Documentation](https://hangfire redis)
There you mention
.UseRedisStorage(“password@localhost:6379”, 0);
But do not mention how to use user name with this connection string approach – can you help?