Example #1
0
 public RedisList(RedisGroup connectionGroup, string listKey)
     : this(connectionGroup.GetSettings(listKey), listKey)
 {
 }
Example #2
0
 public RedisSubject(RedisGroup connectionGroup, string key, PubSubKeyType keyType = PubSubKeyType.Normal)
     : this(connectionGroup.GetSettings(key), key, keyType)
 {
 }
Example #3
0
 public RedisSet(RedisGroup connectionGroup, string stringKey)
     : this(connectionGroup.GetSettings(stringKey), stringKey)
 {
 }
Example #4
0
 public RedisDictionary(RedisGroup connectionGroup, string hashKey)
     : this(connectionGroup.GetSettings(hashKey), hashKey)
 {
 }