awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 个仓库

Awesome GitHub RepositoriesMap Serialization

Binary encoding of key-value pairs by storing entry counts followed by alternating keys and values.

Distinct from Key-Value Pair Managers: Focuses on the serialization process of maps, not the management of key-value data structures.

Explore 3 awesome GitHub repositories matching data & databases · Map Serialization. Refine with filters or upvote what's useful.

Awesome Map Serialization GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • msgpack/msgpackmsgpack 的头像

    msgpack/msgpack

    7,472在 GitHub 上查看↗

    MessagePack is a binary object serialization library and a cross-platform data exchange format. It serves as a binary alternative to JSON, converting structured data into a space-efficient binary representation for network transmission and storage. The system provides a standardized format for swapping complex data types across different programming languages and architectures. It allows for the definition of custom data type encoding by pairing application-specific information with specialized serialization markers. The library handles the encoding and decoding of diverse data types, includ

    Serializes key-value maps by storing the entry count followed by sequential keys and values.

    在 GitHub 上查看↗7,472
  • alipay/furyalipay 的头像

    alipay/fury

    4,412在 GitHub 上查看↗

    Fury 是一个多语言二进制序列化框架,旨在编码领域对象和复杂图,以促进跨语言数据交换。它包括一个接口定义语言(IDL)编译器,可将模式定义转换为多种语言中的惯用原生类型和序列化样板代码。 该框架通过零拷贝二进制读取器脱颖而出,该读取器允许在不反序列化整个对象的情况下访问特定字段,以及一个保留循环引用和引用完整性的对象图序列化器。它还具有一个数据转换器,可将基于行的二进制数据转换为用于分析工作负载的列式 Apache Arrow 格式。 该框架涵盖了广泛的功能领域,包括用于前向和后向兼容性的元数据驱动模式演进、用于消除运行时反射的构建时 AOT 编译过程,以及通过基于白名单的类型验证进行的安全反序列化。它还为通过 gRPC 进行的高性能远程过程调用提供了集成。

    Encodes grouped data structures like lists and maps using size markers, type metadata, and reference tracking.

    Java
    在 GitHub 上查看↗4,412
  • apache/foryapache 的头像

    apache/fory

    4,234在 GitHub 上查看↗

    Fory is a cross-language serialization framework and binary data serializer designed to convert complex object graphs into a compact binary format for high-performance data exchange. It includes an IDL-based schema compiler to transform interface definition language files into type-safe native data models and a schema evolution manager to maintain forward and backward compatibility. The project features a zero-copy data access layer that allows reading specific fields from binary rows without deserializing the entire object. It supports dual-mode serialization, enabling a toggle between a por

    Encodes collections and maps with optimized headers for element type sharing and nullability.

    Javacompressioncppcross-language
    在 GitHub 上查看↗4,234
  1. Home
  2. Data & Databases
  3. Key-Value Pair Managers
  4. Map Serialization

探索子标签

  • Collection SerializationOptimized binary encoding for lists, sets, and maps with shared element type headers. **Distinct from Map Serialization:** Covers both collections and maps with optimized headers, whereas the parent focuses specifically on key-value pair encoding.