BB.Caching.SharedCache.GetReadConnection C# (CSharp) Method

GetReadConnection() public method

Gets a read-only connection.
public GetReadConnection ( RedisKey key ) : StackExchange.Redis.ConnectionMultiplexer
key RedisKey /// The key. ///
return StackExchange.Redis.ConnectionMultiplexer
        public ConnectionMultiplexer GetReadConnection(RedisKey key)
        {
            return this._consistentHashRing.GetNode(key).GetReadMultiplexer();
        }