Files
flatbuffers/rust/flexbuffers
Casper c3faa83463 Fix Cargo.toml dependencies (#5911)
* Fix Cargo.toml dependencies

* less specific serde dependency

Co-authored-by: Casper Neo <cneo@google.com>
2020-05-13 11:24:32 -07:00
..
2020-05-07 14:11:26 -07:00
2020-05-07 14:11:26 -07:00
2020-05-13 11:24:32 -07:00
2020-05-07 14:11:26 -07:00

Flexbuffers

Flexbuffers is a schema-less binary format developed at Google. FlexBuffers can be accessed without parsing, copying, or allocation. This is a huge win for efficiency, memory friendly-ness, and allows for unique use cases such as mmap-ing large amounts of free-form data.

FlexBuffers' design and implementation allows for a very compact encoding, with automatic sizing of containers to their smallest possible representation (8/16/32/64 bits). Many values and offsets can be encoded in just 8 bits.

Flexbuffers is the schema-less cousin of Flatbuffers.