Exemple #1
0
 public RedisObject(RedisClient redis, string id)
 {
     this.redis = redis;
     this.id    = id;
 }
Exemple #2
0
 public RedisObject(RedisClient redis, string id, Expression <Func <T> > member)
 {
     this.redis = redis;
     this.id    = id + ":" + MemberInfoGetting.GetMemberName(member);
 }
Exemple #3
0
 public RedisExpiryList(RedisClient redis, string id)
 {
     this.redis = redis;
     this.id    = id;
 }
Exemple #4
0
 public RedisExpiryList(RedisClient redis, string id, Expression <Func <T> > member, ExpirationAction expirationAction = null)
 {
     this.redis            = redis;
     this.id               = id + ":" + MemberInfoGetting.GetMemberName(member);
     this.expirationAction = expirationAction;
 }
Exemple #5
0
 public RedisDictionary(RedisClient redis, string id)
 {
 }
Exemple #6
0
 public RedisDictionary(RedisClient redis, string id, Expression <Func <T> > member)
 {
     this.id = id + ":" + MemberInfoGetting.GetMemberName(member);
 }