Serialize with PDX Serialization
GemFire’s Portable Data eXchange (PDX) is a cross-language data format that can reduce the cost of distributing and serializing your objects. PDX stores data in named fields that you can access individually, to avoid the cost of deserializing the entire data object. PDX also allows you to mix versions of objects where you have added or removed fields.
You have two options for GemFire PDX serialization when using the .NET caching API. You can program your domain objects using the IPdxSerializable
interface, or you can use GemFire’s reflection-based autoserializer.
- Geode PDX Serialization Features
- Serialize Using the Geode PDX Autoserializer
- Extend the PDX Autoserializer
- Serialize Your Domain Objects with IPdxSerializer
- Serialize Using the IPdxSerializable Interface
- Program Your Application to Use IPdxInstance
- Use the IPdxInstanceFactory to Create IPdxInstances
- Map .NET Domain Type Names to PDX Type Names with IPdxTypeMapper
- Data Serialization Options
- Serialize with PDX Serialization