我有一个示例,其中要将对象存储到Redis中。
class CyPoint
{
// Fields...
private bool _Done;
private string _Color;
private string _Position;
private long _Id;
public long Id
{
get { return _Id; }
set
{
_Id = value;
}
}
public string Position
{
get { return _Position; }
set
{
_Position = value;
}
}
public string Color
{
get { return _Color; }
set
{
_Color = value;
}
}
public bool Done
{
get { return _Done; }
set
{
_Done = value;
}
}
}
我正在使用此代码存储数据
var redisCyPoint = redis.As<CyPoint>();
var cpt = new CyPoint
{
Id = redisCyPoint.GetNextSequence(),
Position = "new Vector3(200, 300, 0)",
Color = "new Vector3(.5f, .7f, .3f)",
};
redisCyPoint.Store(cpt);
这在我存储字符串时起作用。但是,当我将位置和颜色更改为Vector3(即float,float,float)时,它仅保存0。似乎该商店不适用于复杂类型。这是一个限制还是有办法做到?
最佳答案
结构是ToString()
返回的serialized as a single scalar string value。您可以通过实现可从其Vector3(string)
值填充自身的构造函数ToString()
或实现静态ParseJson(string)
方法来实现custom support for Structs。
否则,您可以指定自定义序列化程序来处理序列化,例如:
JsConfig<Vector3>.SerializeFn = v => "{0},{1},{2}".Fmt(v.X,v.Y,v.Z);
JsConfig<Vector3>.DeSerializeFn = s => {
var parts = s.Split(',');
return new Vector3(parts[0],parts[1],parts[2]);
};
关于redis - 在RedisTypedClient(ServiceStack Redis)中使用复杂类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37976321/