Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
似乎可以将自定义缓存序列化程序与 Azure AppFabric 一起使用(Jagan Peri 的自定义序列化)。
是否有可能将自定义序列化程序与 Windows Server AppFabric 缓存一起使用?
不幸的是,这是不可能的。AppFabric 缓存使用 NetDataContractSerializer(如果配置了 deflate 压缩)。在反编译客户端程序集后,我自己检查了这一点。
您可以使用以下解决方法实现此目的:
1)实现您自己的自定义序列化 2)在放入缓存之前序列化您的对象 3)将字符串对象添加到缓存中
沃伊泰克