blob: 0f0a77ffab8c7b8cb40a8b61bb17b33899d3f234 (
plain) (
blame)
1
2
3
4
5
6
|
MessagePack is an efficient binary serialization format, which lets you
exchange data among multiple languages like JSON, except that it's faster and
smaller. Small integers are encoded into a single byte and short strings
require only one extra byte in addition to the strings themselves.
WWW: https://msgpack.org/
|