serviceStack.Redis 在PooledRedisClientManager 中設定密碼

來源:互聯網
上載者:User

標籤:style   blog   color   os   ar   for   sp   div   art   

ServiceStack.Redis 是一個C#訪問Redis的用戶端,可以說可以通過它實現所有需要Redis-Cli的功能。但是今天我在主Redis 執行個體設定了訪問密碼,而在slave 上沒有設定,我通過一個緩衝工廠來擷取串連。在redisClient執行個體化可以直接設定密碼。

 1  /// <summary> 2     /// 快取用戶端管理器工廠 3     /// </summary> 4     public class PoolManagerFactory 5     { 6         private static PooledRedisClientManager Manager = null; 7         public static PooledRedisClientManager CreateManager(string[] readWriteHosts, string[] readOnlyHosts, int initialDB = 0) 8         { 9             if (Manager == null)10             {11                 Manager = new PooledRedisClientManager(readWriteHosts, readOnlyHosts, new RedisClientManagerConfig()12                 {13                     MaxWritePoolSize = 5,14                     MaxReadPoolSize = 5,15                     AutoStart = true16                 }, initialDB, 50, 5);17             }18             return Manager;19         }20 21     }

 

我一直認為readWriteHosts數組中只能輸入ip:port來代表一個redis 執行個體的串連,但是如何把密碼加在裡面呢?想不到如何?,只能下載了原始碼查看,原來這個實現是通過分隔字串來實現,

 1     /// <summary> 2         /// IP地址中可以加入auth驗證   [email protected]:port 3         /// </summary> 4         /// <param name="hosts"></param> 5         /// <returns></returns> 6         public static List<RedisEndpoint> ToRedisEndPoints(this IEnumerable<string> hosts) 7         { 8             if (hosts == null) return new List<RedisEndpoint>(); 9             //redis終結點的列表10             var redisEndpoints = new List<RedisEndpoint>();11             foreach (var host in hosts)12             {13                 RedisEndpoint endpoint;14                 string[] hostParts;15                 if (host.Contains("@"))16                 {17                     hostParts = host.SplitOnLast(‘@‘);18                     var password = hostParts[0];19                     hostParts = hostParts[1].Split(‘:‘);20                     endpoint = GetRedisEndPoint(hostParts);21                     endpoint.Password = password;22                 }23                 else24                 {25                     hostParts = host.Split(‘:‘);26                     endpoint = GetRedisEndPoint(hostParts);27                 }28                 redisEndpoints.Add(endpoint);29             }30             return redisEndpoints;31         }

在ip:port前面加上@用來表示密碼,比如[email protected]:port    ,現在才知道能看到源碼的程式是多麼的幸福的一件事。開源偉大。

master:設定密碼:config set requirepass password

 

slave 指定master密碼:config set masterauth password   就可以實現在master設定密碼,並且不需要重啟redis執行個體 非常方便,但是這種方式重啟後失效。

 

serviceStack.Redis 在PooledRedisClientManager 中設定密碼

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.