我正在尝试为我的c#项目实现redis缓存。我使用了 redisClient ,它可以存储普通的数据类型,如int和strings,但不能存储对象。然后我转移到 RedisTypedClient ,它应该将我的对象存储在redis中,但存储一个空对象。当我尝试检索该对象时,它会创建一个新对象并返回该对象。
这是我的测试代码,我试图开始工作,但它不起作用。
internal class Test
{
public int a;
public int b;
public string s;
public void show()
{
Console.WriteLine(a + " " + b + " " + s);
}
}
public class Program
{
private static void Main(string[] args)
{
using (var redisClient = new RedisClient("localhost"))
{
var t = new List<Test>();
t.Add(new Test {a = 1, b = 2});
t.Add(new Test {a = 3, b = 4});
var key = "e";
var rtest = redisClient.As<Test>();
rtest.Store(t[0]).show();
Console.WriteLine(t[0].GetId());
var q = rtest.GetById(t[0].GetId());
}
Console.ReadKey();
}
我也尝试过使用redis列表。
IRedisList<Test> tl = rtest.Lists["testl"];
tl.Add(new Test { a = 1, b = 2 });
tl.Add(new Test { a = 3, b = 4 });
var rlist = rtest.Lists["testl"];
但在这种情况下也会发生同样的事情。它存储空对象。
我是Windows的新手,我可能犯了一些错误。但我无法让它发挥作用。任何帮助将不胜感激。
答案 0 :(得分:1)
默认情况下ServiceStack.Text序列化程序仅存储公共属性,因此您需要将要序列化的类中的字段转换为属性,例如:
internal class Test
{
public int a { get; set; }
public int b { get; set; }
public string s { get; set; }
public void show()
{
Console.WriteLine(a + " " + b + " " + s);
}
}
或者您可以将文本序列化程序更改为序列化公共字段:
JsConfig.IncludePublicFields = true;