blob: e913d26f9230ffbe1423e29bd58230c8a345fafb [file] [view]
# PdxSerializer example
This is a simple example showing how to register for serialization of custom objects using the PdxSerializer class.
## Prerequisites
* An installation of Apache Geode.
* Apache Geode Native, built and installed.
* Apache Geode Native examples, built and installed.
* A `GEODE_HOME` environment variable set to the location of the Apache Geode installation.
* `GEODE_HOME/bin` in the execution path.
## Running
1. Set the current directory to the `pdxserializer` directory in your example workspace.
```
$ cd workspace/examples/cpp/pdxserializer
```
1. Run the `startserver.sh` script to start the Geode server, create a region, and populate the region with sample data.
```
$ sh ./startserver.sh
/Users/user/geode/bin/gfsh
(1) Executing - start locator --name=locator
...
(2) Executing - start server --name=server
...
(3) Executing - create region --name=custom_orders --type=PARTITION
Member | Status
------ | -------------------------------------------
server | Region "/custom_orders" created on "server"
```
1. Execute `pdxserializer`:
```
$ build/pdxserializer
Storing orders in the region
Getting the orders from the region
OrderID: 1
Product Name: product x
Quantity: 42
```
1. Stop the server
```
$ sh ./stopserver.sh
/Users/user/geode/bin/gfsh
(1) Executing - connect
...
(2) Executing - stop server --name=server
...
(3) Executing - stop locator --name=locator
....
```