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

GetAllReadConnections() public method

Gets all read-only connections.
public GetAllReadConnections ( ) : StackExchange.Redis.ConnectionMultiplexer[]
return StackExchange.Redis.ConnectionMultiplexer[]
        public ConnectionMultiplexer[] GetAllReadConnections()
        {
            return this._consistentHashRing.GetAvailableNodes()
                .Select(n => n.GetReadMultiplexer())
                .ToArray();
        }