You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

  1. Acquire Protobuf libraries for the target language for your Geode client driver of choice.
  2. Download the latest relase of GEODE  —> add link
  3. Start a Geode server with the following GFSH commands/script

    start server
    gfsh start server ...
  4. Locate protobuf message definition artifact from the downloaded Geode release in directory  ---> add directory here.
  5. Using the Protobuf library, generate the language bindings from the message definitions downloaded in the previous step.

  6. In the target language, connect a TCP socket to the server on the local host and on port 1234. <--- correct port
  7. Write byte 110 to the socket.
  8. Write the handshake message to the socket.
  9. Read the handshake response from the socket.
  10. Write the put message to the socket.
  11. Read the put response from the socket.

 

  • No labels