经过几个月开发,FlatBuffers 1.1版本更新。这次的更新包含:
初始发布于去年6月份的FlatBuffers是Google推出的一种高效的开源跨平台序列化库,允许使用者在没有解析/拆包或分配额外内存的情况下读取数据。它支持模式演化(向前/向后兼容性)和可选的JSON转换。其具有如下特点:
在FlatBuffers的使用方法方面,简单来说需要遵循以下步骤(具体示例可查看文末给出的链接):
FlatBuffers 1.1版本下载地址:https://github.com/google/flatbuffers/releases FlatBuffers使用方法查看:http://liubin.org/2014/06/19/google-flatbuffers-cross-platform-serialization-library/ 项目在GitHub上的托管地址:https://github.com/google/flatbuffers 更多的信息可查看FlatBuffers文档:https://google.github.io/flatbuffers/ |