当前位置

网站首页> 程序设计 > 程序资讯 > 软件更新资讯 > 浏览文章

FlatBuffers 1.1 发布,序列化库

作者:小梦 来源: 网络 时间: 2024-05-16 阅读:

阿里百川,开启移动应用开发的新篇章

FlatBuffers 1.1 发布,此次版本发布主要有以下更新:

  • an extensive overhaul to the Java API

  • out-of-the-box support for C# and Go

  • an optional verifier to make FlatBuffers practical in untrusted scenarios

  • .proto parsing for easier migration from Protocol Buffers

  • optional manual assignment of field IDs

  • dictionary functionality through binary search on a key field

  • bug fixes and other improvements thanks to 200+ commits from 28 contributors 

详细信息请查看发行页面。

下载地址:

  • flatc_windows_exe.zip

  • Source code (zip)

  • Source codespan class="Apple-converted-space"> (tar.gz)

FlatBuffers 是一个 Java 的序列化库,用于游戏和其他内存受限的应用。FlatBuffers 可以让你直接访问序列化后的数据,无需解压并进行解析的过程。同时提供很强的向前和向后兼容性。

FlatBuffers 支持 C++ 和 Java 语言,无需依赖第三方库支持。

FlatBuffers 使用命令行工具 flatc 用来生成 Java 和 C++ 的类。

相关阅读