https://github.com/only-cliches/NoProto
flatbuffer 就是内存直接映射,所以最快 protobuffer 是二进制,做了一点点压缩,所以最小,但是速度稍慢 json 是文本化的,又大又慢,但是可读性强
-
编解码由快到慢
flatbuffer > protobuffer > json
-
size 由小到大
protobuffer < flatbuffer < json
http://google.github.io/flatbuffers/flatbuffers_guide_use_java.html