C++ Serialization Performance

I would strongly suggest protocol buffers. They’re incredibly simple to use, offer great performance, and take care of issues like endianness and backwards compatibility. To make it even more attractive, serialized data is language-independent thanks to numerous language implementations.

Leave a Comment