Home

Awesome

About

Compare various data serialization libraries for C++.

Build

This project does not have any external serialization libraries dependencies. All (boost, thrift etc.) needed libraries are downloaded and built automatically, but you need enough free disk space (approx. 2.3G) to build all components. To build this project you need a compiler that supports C++14 features. Project was tested with Clang and GCC compilers.

  1. git clone https://github.com/thekvs/cpp-serializers.git
  2. cd cpp-serializers
  3. mkdir build
  4. cd build
  5. cmake -DCMAKE_BUILD_TYPE=Release ..
  6. cmake --build .

Usage

$ ./benchmark -h
Benchmark various C++ serializers
Usage:
  benchmark [OPTION...]

  -h, --help             show this help and exit
  -l, --list             show list of supported serializers
  -c, --csv              output in CSV format
  -i, --iterations arg   number of serialize/deserialize iterations
  -s, --serializers arg  comma separated list of serializers to benchmark
$ ./benchmark -i 100000
$ ./benchmark -i 100000 -s protobuf
$ ./benchmark -i 100000 -s protobuf,cereal

Results

Following results were obtained running 1000000 serialize-deserialize operations 50 times and then averaging results on a typical desktop computer with Intel Core i7 processor running Ubuntu 16.04. Exact versions of libraries used are:

serializerobject's sizeavg. total time
thrift-binary170171190.22
thrift-compact133783474.32
protobuf161162312.78
boost174701195.04
msgpack134022560.6
cereal174161052.46
avro163844488.18
yas17416302.7
yas-compact133212063.34

Size

Size

Time

Time

For capnproto and flatbuffers since they already store data in a "serialized" form and serialization basically means getting pointer to the internal storage, we measure full build/serialize/deserialize cycle. In the case of other libraries we measure serialize/deserialize cycle of the already built data structure.

serializerobject's sizeavg. total time
capnproto17768400.98
flatbuffers17632491.5

Time

Size measured in bytes, time measured in milliseconds.