Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

up vote 3 down vote accepted

I fixed this a month ago:

container.Register(c => new PooledRedisClientManager(
    "passwordblahblahblah@barracuda.redistogo.com:9287"
));

I should probably update the docs. :)

share|improve this answer
Will username:password@hostname:port work? – pate Feb 25 '12 at 15:19
Redis auth has no concept of usernames + passwords, just passwords. RedisToGo has usernames + passwords for accessing your account, but you only need a password to authenticate with your Redis instance. – DanB Feb 27 '12 at 9:03
didn't know that. Thanks @DanB. – pate Feb 27 '12 at 14:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.