Skip to content

Benchmark comparing various data serialization libraries (thrift, protobuf etc.) for C++

Notifications You must be signed in to change notification settings

tmp-reg/cpp-serializers

 
 

Repository files navigation

About

Compare various data serialization libraries for C++.

Build

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

$ git clone https://github.com/thekvs/cpp-serializers.git
$ mkdir /path/to/build-root/
$ cd /path/to/build-root/
$ cmake /path/to/cpp-serializers -DCMAKE_BUILD_TYPE=Release
$ make

Usage

  • Test all serializers, run each serializer 100000 times:
$ ./benchmark 100000
  • Test only protobuf serializer, run it 100000 times:
$ ./benchmark 100000 protobuf
  • Test protobuf and cereal serializers only, run each of them 100000 times:
$ ./benchmark 100000 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 i5 processor running Ubuntu 14.04. Exact versions of libraries used are:

  • thrift 0.9.3
  • protobuf 3.1.0
  • boost 1.62.0
  • msgpack 2.0.0
  • cereal 1.2.1
  • avro 1.8.1
  • capnproto 0.5.3
  • flatbuffers 1.4.0
  • YAS 4.0.0
serializer object's size avg. total time
thrift-binary 17017 13748
thrift-compact 11597 25947
protobuf 12571 24196
boost 17470 21717
msgpack 11902 29597
cereal 17416 11121
avro 12288 31880
yas 17416 5113
yas-compact 12830 21858
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.

serializer object's size avg. total time
capnproto 17768 4460
flatbuffers 17632 12755

Time

Size measured in bytes, time measured in milliseconds.

About

Benchmark comparing various data serialization libraries (thrift, protobuf etc.) for C++

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 75.4%
  • CMake 20.0%
  • R 4.0%
  • Other 0.6%