internal RedisConnectionInfo(string host, RedisSettings.Instance settings) { Settings = settings; Host = host; }
internal RedisConnectionInfo(RedisHost server, RedisSettings.Instance settings) { Server = server; Settings = settings; }
internal RedisConnectionInfo(RedisHost server, RedisSettings.Instance settings, AddressCache addressCache) { Server = server; Settings = settings; AddressCache = addressCache; }