Reputation: 32343
It seems it is possible to use custom cache serializer with Azure AppFabric (Custom Serialization by Jagan Peri).
Is there any possibility to use custom serializer with Windows Server AppFabric caching?
Upvotes: 1
Views: 428
Reputation: 267
you can achieve this using following workaround:
1) implement your own custom serialization 2) serialize your objects before putting into cache 3) add string object into cache
Wojtek
Upvotes: 0
Reputation: 24556
Unfortunately, it is not possible. AppFabric Caching use the NetDataContractSerializer (with deflate compression if configured). I have check this point by myself after decompiling client assemblies.
Upvotes: 3