Oleks
Oleks

Reputation: 32343

Using a custom cache serializer with Windows Server App Fabric

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

Answers (2)

Wojciech Iłowiecki
Wojciech Iłowiecki

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

Cybermaxs
Cybermaxs

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

Related Questions