Question

How do I specify a username and password for the Redis hostname when instantiating a PooledRedisClientManager?

var _redis = PooledRedisClientManager("my.redishost.com:1234");

I specifically need to deploy a .NET-based ServiceStack.Redis application to AppHarbor and I'm using Redis To Go for Redis hosting.

Was it helpful?

Solution

https://github.com/ServiceStack/ServiceStack.Redis/wiki/Authentication

To authenticate with Redis using a password, simply pass in to the connection string using password@host syntax:

container.Register(c => new PooledRedisClientManager("password@host:6379"));
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top