Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Std::auto_ptr has been replaced with std::unique_ptr, boost::regex has been replaced with std::regex.

CEREAL

Is used to provide the client/server serialisations, and uses JSON text. There was an option to use BINARY which is a lot faster. But then we lose the backward compatibility, and more importantly the client/server communication may break due to byte order incompatibility. i.e when client/server are on different hardware.

...