tree: 3907b340ef8575d0a6686865fb39e0f826c51a4e [path history] [tgz]
  1. main.cpp
  2. Order.cpp
  3. Order.hpp
  4. OrderSerializer.cpp
  5. OrderSerializer.hpp
  6. README.md
  7. startserver.ps1
  8. startserver.sh
  9. stopserver.ps1
  10. stopserver.sh
examples/cpp/pdxserializer/README.md

pdxserializer example

This is a simple example showing how to register for serialization of custom objects using the PdxSerializer class.

Prerequisites

  • Install Apache Geode
  • Build and install Apache Geode Native
  • Apache Geode Native examples, built and installed
  • Set GEODE_HOME to the install directory of Apache Geode

Running

  1. From a command shell, set the current directory to the pdxserializer build directory in your example workspace.

    $ cd workspace/examples/build/cpp/pdxserializer
    
  2. Run the startserver script to start the Geode cluster with authentication and create a region.

    For Windows cmd:

    $ powershell.exe -File startserver.ps1
    

    For Windows Powershell:

    $ startserver.ps1
    

    For Bash:

    $ ./startserver.sh
    
  3. Execute cpp-pdxserializer, expect the following output:

    Storing orders in the region
    Getting the orders from the region
    OrderID: 1
    Product Name: product x
    Quantity: 42
    
  4. Run the stopserver script to gracefully shutdown the Geode cluster.

    For Windows cmd:

    $ powershell.exe -File stopserver.ps1
    

    For Windows Powershell:

    $ stopserver.ps1
    

    For Bash:

    $ ./stopserver.sh