をインスタンス化するときに、Redisホスト名のユーザー名とパスワードを指定するにはどうすればよいPooledRedisClientManager
ですか?
var _redis = PooledRedisClientManager("my.redishost.com:1234");
特に、.NETベースのServiceStack.RedisアプリケーションをAppHarborにデプロイする必要があり、RedisホスティングにRedisToGoを使用しています。
をインスタンス化するときに、Redisホスト名のユーザー名とパスワードを指定するにはどうすればよいPooledRedisClientManager
ですか?
var _redis = PooledRedisClientManager("my.redishost.com:1234");
特に、.NETベースのServiceStack.RedisアプリケーションをAppHarborにデプロイする必要があり、RedisホスティングにRedisToGoを使用しています。
https://github.com/ServiceStack/ServiceStack.Redis/wiki/Authentication
パスワードを使用してRedisで認証するには、password@host構文を使用して接続文字列に渡すだけです。
container.Register(c => new PooledRedisClientManager("password@host:6379"));