awesome-repositories.com
© 2026 Bringes Technology SRL·VAT RO45896025·hello@bringes.io
MCPSitemapPrivacyTerms
Data Encoding Schemes · Awesome GitHub Repositories

1 repo

Awesome GitHub RepositoriesData Encoding Schemes

Mechanisms for representing complex data types, including unions and variants, within serialized binary streams.

Distinguishing note: Specifically addresses the encoding of polymorphic types and union structures in binary data.

Explore 1 awesome GitHub repository matching data & databases · Data Encoding Schemes. Refine with filters or upvote what's useful.

  1. Home
  2. Data & Databases
  3. Data Encoding Schemes

Awesome Data Encoding Schemes GitHub Repositories

Describe the repository you're looking for…
Find the best repos with AI.We'll search the best matching repositories with AI.
  • google/flatbuffers

    google/flatbuffers

    25,558View on GitHub↗

    FlatBuffers is a cross-platform serialization library designed for performance-critical applications that require efficient, zero-copy data access. By organizing data in a structured binary format, it allows applications to read and write complex data structures directly from memory-mapped buffers without the need for intermediate parsing or temporary object allocation. The project distinguishes itself through a schema-driven approach that balances high-performance access with long-term data evolution. It utilizes a unique memory layout featuring relative offsets and inline fixed-size structu

    FlatBuffers encodes union types by combining an enumeration constant for the selected choice with a relative offset to the actual data element.

    C++cc-plus-plusc-sharp
    25,558View on GitHub↗