Esempio n. 1
0
 public RedisClientHelper(int dbNum, ConfigurationOptions configOptions, string KeyPrefix)
 {
     this.DbNum     = dbNum;
     this.KeyPrefix = KeyPrefix;
     this._conn     = RedisConnectionHelp.CreateConnect(configOptions);
 }
Esempio n. 2
0
 public RedisClientHelper(int dbNum, string readWriteHosts, string KeyPrefix)
 {
     this.DbNum     = dbNum;
     this.KeyPrefix = KeyPrefix;
     this._conn     = RedisConnectionHelp.CreateConnect(readWriteHosts);
 }