Search code examples
authenticationredisservicestackappharbor

Authenticated ServiceStack.Redis.PooledRedisClientsManager


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.


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"));