透明Redis Dal与serviceStack Redis

时间:2012-11-23 02:44:26

标签: redis servicestack

Yeap我在这里有另一个奇怪的问题:)

我尝试实现透明的Redis数据访问层。

我会热切地加载N * 1和1 * 1关系,N * N和1 * N关系懒惰。

public class User
{
   public long CityId {get;set;} 

   [EagerLoading]
   [IgnoreDataMember]
   public City {get;set;}
}

public class City
{
  public ICollection<long> UserIds {get;set;}

  [LazyLoading]
  [IgnoreDataMember] 
  public ICollection<User> Users{get;set;}
}

CUD操作(创建,更新,删除)没有问题。我可以存储完整的对象层次结构。

但是我需要非类型的Get方法来检索对象。

public class GenericRedisRepository
{
     public object Get(string objectUrn)
     {
        using (var r = RedisManager.GetReadOnlyClient())
        {
            var pocoObject=r.GetObject(objectUrn); // I COULD NOT FIND THIS METHOD
            foreach (var property in ReflectionHelper.GetEagerLoadingProperties(pocoObject))
            {
                // Fixup relations and load all EagerLoading properties recursively
            } 
        }
     }
}

任何想法或替代方式..

1 个答案:

答案 0 :(得分:1)

抱歉迟到了。我想知道为什么你坚持使用属性而不是本质上没有序列化/反序列化的方法:

public class User
{
   public long Id { get; set; }
}

public class City
{
  public IEnumerable<long> UserIds { get; set; }

  public IEnumerable<User> GetUsers()
  {
      using (var userData = redis.As<User>())
          return userData.GetByIds(UserIds);
  }
}

通过这种方式,您可以在真正需要时调用GetUsers()来延迟加载用户:

var city = redis.As<City>().GetById(id);
...
var users = city.GetUsers();