문제

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.

도움이 되었습니까?

해결책

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"));
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top