8

实现一些自定义序列化的对象可以被序列化和反序列化为不同的格式,例如 Xml 或 byte[]。

我遇到了一个问题,当我放入缓存时,AppFabric 在一个类上运行 IXmlSerializable 实现,而我宁愿强制它使用二进制文件。 AppFabric 缓存 - 它对对象的序列化和反序列化要求是什么?

我可以配置这个吗?

(目前解决方法是以编程方式将对象序列化为 byte[],然后将其发送到缓存中,在退出时反转过程)。

4

1 回答 1

7

在 MSDN 文档中,它说我们可以实现 IDataCacheObjectSerializer 来实现这个目标。你可以在这里阅读:http: //msdn.microsoft.com/en-us/library/windowsazure/hh552969.aspx

class MySerializer : IDataCacheObjectSerializer
{
    public object Deserialize(System.IO.Stream stream)
    {
        // Deserialize the System.IO.Stream 'stream' from
        // the cache and return the object 
    }

    public void Serialize(System.IO.Stream stream, object value)
    {
        // Serialize the object 'value' into a System.IO.Stream
        // that can be stored in the cache
    }
}

之后,您可以将自定义序列化程序设置为 DataCacheFactory:

DataCacheFactoryConfiguration configuration = new DataCacheFactoryConfiguration();

configuration.SerializationProperties = 
   new DataCacheSerializationProperties(DataCacheObjectSerializerType.CustomSerializer, 
   new MyNamespace.MySerializer());

// Assign other DataCacheFactoryConfiguration properties...

// Then create a DataCacheFactory with this configuration
DataCacheFactory factory = new DataCacheFactory(configuration);

希望这可以帮助。

于 2011-11-19T15:26:15.420 回答