Redis和ServiceStack.Net Redis丢失了数据

时间:2012-04-05 17:40:54

标签: c# redis

我正在测试Redis,但我遇到了问题。如果我存储超过8000个项目,则会丢失超过2个记录。丢失的数据量与插入的记录数量成正比。

  class ProdutoDTO
  {
     public long id { get; set; }
     public string name { get; set; }
  }

 using (var produtosRedis = redisClient.GetTypedClient<ProdutoDTO>())
 {
     for (var i = 0; i < 15000; i++)
     {
        ProdutoDTO produto = new ProdutoDTO();
        produto.id = produtosRedis.GetNextSequence();
        produto.name = "test" + produto.id.ToString();
        produtosRedis.Store(produto);
     }
  }      

我解决了:

旧代码:

class ProdutoDTO  {
 public long id { get; set; }
 public string name { get; set; }
}

新代码:

class ProdutoDTO  {
 public long Id { get; set; }
 public string name { get; set; }
}

因为,C#Redis客户端可以使用任何具有单个主键的POCO - 默认情况下应该是Id。

有关C#Redis的更多信息:ServiceStack.Net Redis: Storing Related Objects vs. Related Object Ids

0 个答案:

没有答案