internal RedisConnectionInfo(string host, RedisSettings.Instance settings)
 {
     Settings = settings;
     Host = host;
 }
Beispiel #2
0
 internal RedisConnectionInfo(string host, RedisSettings.Instance settings)
 {
     Settings = settings;
     Host     = host;
 }
Beispiel #3
0
 internal RedisConnectionInfo(RedisHost server, RedisSettings.Instance settings)
 {
     Server   = server;
     Settings = settings;
 }
Beispiel #4
0
 internal RedisConnectionInfo(RedisHost server, RedisSettings.Instance settings, AddressCache addressCache)
 {
     Server       = server;
     Settings     = settings;
     AddressCache = addressCache;
 }