Пример #1
0
 public RedisObject(RedisClient redis, string id)
 {
     this.redis = redis;
     this.id    = id;
 }
Пример #2
0
 public RedisObject(RedisClient redis, string id, Expression <Func <T> > member)
 {
     this.redis = redis;
     this.id    = id + ":" + MemberInfoGetting.GetMemberName(member);
 }
Пример #3
0
 public RedisExpiryList(RedisClient redis, string id)
 {
     this.redis = redis;
     this.id    = id;
 }
Пример #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;
 }
Пример #5
0
 public RedisDictionary(RedisClient redis, string id)
 {
 }
Пример #6
0
 public RedisDictionary(RedisClient redis, string id, Expression <Func <T> > member)
 {
     this.id = id + ":" + MemberInfoGetting.GetMemberName(member);
 }