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

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

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

Open-source alternatives to Simple Binary Encoding

30 open-source projects similar to real-logic/simple-binary-encoding, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best Simple Binary Encoding alternative.

  • google/flatbuffersgoogle 的头像

    google/flatbuffers

    25,558在 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

    C++cc-plus-plusc-sharp
    在 GitHub 上查看↗25,558
  • square/wiresquare 的头像

    square/wire

    4,419在 GitHub 上查看↗

    Wire is a cross-platform code generator and implementation of gRPC and Protocol Buffers. It transforms schema definitions into type-safe native language bindings for Kotlin, Swift, and Java to ensure consistent data exchange and communication between distributed systems. The project provides specialized tools for protocol buffer schema management, including the ability to prune unused types and filter fields by version to reduce final binary sizes. It also handles namespace management and allows for the creation of custom schema handlers to execute user-defined logic during the compilation ph

    Kotlin
    在 GitHub 上查看↗4,419
  • rigtorp/mpmcqueuerigtorp 的头像

    rigtorp/MPMCQueue

    1,532在 GitHub 上查看↗

    A bounded multi-producer multi-consumer concurrent queue written in C++11

    C++
    在 GitHub 上查看↗1,532
  • gutjuri/triesgutjuri 的头像

    gutjuri/tries

    13在 GitHub 上查看↗

    Tries in C++

    C++
    在 GitHub 上查看↗13

AI 搜索

探索更多 awesome 仓库

用简单的语言描述您的需求 —— AI 将根据相关性为您从数千个精选开源项目中进行排序。

Find more with AI search
  • ned14/outcomened14 的头像

    ned14/outcome

    774在 GitHub 上查看↗
    C++boostc-plus-plus
    在 GitHub 上查看↗774
  • protocolbuffers/protobufprotocolbuffers 的头像

    protocolbuffers/protobuf

    71,359在 GitHub 上查看↗

    Protocol Buffers is a language-neutral, platform-agnostic mechanism for serializing structured data. It provides a schema-driven toolchain that compiles declarative data definitions into type-safe source code, enabling consistent communication and strongly typed API contracts across services written in different programming languages. The project distinguishes itself through a highly efficient binary wire format that utilizes tag-based encoding and variable-width integer compression to minimize payload size and processing overhead. It supports robust evolutionary schema management, allowing d

    C++marshallingprotobufprotobuf-runtime
    在 GitHub 上查看↗71,359
  • deckarep/golang-setdeckarep 的头像

    deckarep/golang-set

    4,690在 GitHub 上查看↗

    This project is a set theory library for Go that provides a data structure for storing unique elements of any comparable type using generics. It serves as a tool for managing unique collections and performing mathematical operations such as intersections and differences. The library provides synchronized collections to prevent data races during concurrent read and write operations. It also supports converting unique collections to and from JSON arrays for data persistence and network transmission. The implementation covers membership testing, collection cloning, and size calculation. It incl

    Go
    在 GitHub 上查看↗4,690
  • bits-and-blooms/bloombits-and-blooms 的头像

    bits-and-blooms/bloom

    2,791在 GitHub 上查看↗

    Go package implementing Bloom filters, used by many important systems

    Go
    在 GitHub 上查看↗2,791
  • golang/protobufgolang 的头像

    golang/protobuf

    10,074在 GitHub 上查看↗

    This project is a Protocol Buffers implementation for Go, providing a binary serialization framework to convert native data structures into a compact binary format for efficient network transmission and storage. It functions as a language bindings generator, utilizing a compiler plugin to create Go source code from platform-neutral protocol buffer definitions. The implementation includes a JSON data mapper that transforms structured binary messages into JSON format to facilitate compatibility with web services and external APIs. It also enables cross-language data exchange by using a common s

    Go
    在 GitHub 上查看↗10,074
  • greg7mdp/parallel-hashmapgreg7mdp 的头像

    greg7mdp/parallel-hashmap

    3,192在 GitHub 上查看↗

    A family of header-only, very fast and memory-friendly hashmap and btree containers.

    C++
    在 GitHub 上查看↗3,192
  • jamesnk/newtonsoft.jsonJamesNK 的头像

    JamesNK/Newtonsoft.Json

    11,262在 GitHub 上查看↗

    Newtonsoft.Json is a data processing utility for the .NET ecosystem designed to facilitate the transformation and exchange of information. It functions as a serialization library and object mapping framework, enabling the conversion of complex application objects into formatted JSON strings and the reconstruction of structured objects from raw JSON data. The library distinguishes itself through a flexible architecture that supports both strongly-typed class mapping and a dynamic object model for schema-less data manipulation. It employs reflection-based metadata mapping to automate property a

    C#c-sharpjson
    在 GitHub 上查看↗11,262
  • msgpack/msgpack-cmsgpack 的头像

    msgpack/msgpack-c

    3,328在 GitHub 上查看↗

    MessagePack implementation for C and C++ / msgpack.orgC/C++

    在 GitHub 上查看↗3,328
  • protobuf-c/protobuf-cprotobuf-c 的头像

    protobuf-c/protobuf-c

    2,973在 GitHub 上查看↗

    Protocol Buffers implementation in C

    C++
    在 GitHub 上查看↗2,973
  • alandefreitas/smallalandefreitas 的头像

    alandefreitas/small

    150在 GitHub 上查看↗

    C++ small containers

    C++
    在 GitHub 上查看↗150
  • bits-and-blooms/bitsetbits-and-blooms 的头像

    bits-and-blooms/bitset

    1,505在 GitHub 上查看↗

    Go package implementing bitsets

    Go
    在 GitHub 上查看↗1,505
  • cameron314/concurrentqueuecameron314 的头像

    cameron314/concurrentqueue

    12,070在 GitHub 上查看↗

    ConcurrentQueue is a header-only C++ template library that provides a lock-free data structure for multi-producer multi-consumer thread communication. It functions as a synchronization primitive designed to coordinate data flow between concurrent execution units using atomic operations rather than traditional mutex locking. The library distinguishes itself through a design that minimizes contention and synchronization overhead. It utilizes sub-queue token mapping to distribute workloads across partitioned internal queues and supports bulk operations to transfer multiple data elements in singl

    C++
    在 GitHub 上查看↗12,070
  • capnproto/capnprotocapnproto 的头像

    capnproto/capnproto

    13,089在 GitHub 上查看↗

    CapnProto is a zero-copy serialization framework and remote procedure call system. It serves as a C++ communication library providing a schema-based data interchange format that eliminates the need to encode or decode data before reading it from memory. The system enables high-performance data serialization and low-latency network communication. It supports cross-language data exchange by using a defined schema to ensure consistent binary representation across different platforms. The framework provides tools for implementing remote procedure calls, allowing functions to be invoked on a remo

    C++
    在 GitHub 上查看↗13,089
  • chronoxor/fastbinaryencodingchronoxor 的头像

    chronoxor/FastBinaryEncoding

    955在 GitHub 上查看↗

    Fast Binary Encoding is ultra fast and universal serialization solution for C++, C#, Go, Java, JavaScript, Kotlin, Python, Ruby, Swift

    C++
    在 GitHub 上查看↗955
  • flesler/hashmapflesler 的头像

    flesler/hashmap

    382在 GitHub 上查看↗

    HashMap JavaScript class for Node.js and the browser. The keys can be anything and won't be stringified

    JavaScript
    在 GitHub 上查看↗382
  • gogo/protobufgogo 的头像

    gogo/protobuf

    5,669在 GitHub 上查看↗

    This project is a Protocol Buffers Go compiler and code generation framework that translates schema definitions into optimized Go structures and reflection-free serialization methods. It includes a gRPC service generator for producing client and server communication code and a serialization performance toolkit for generating automated benchmarks and test suites. The framework features a plugin-based system for transforming data definitions into source code with custom field mapping and struct tag injection. It allows for custom type mapping and struct type overriding to link data fields to sp

    Gogogolanggrpc
    在 GitHub 上查看↗5,669
  • facebook/immutable-jsfacebook 的头像

    facebook/immutable-js

    33,060在 GitHub 上查看↗

    This is a persistent data structure library for JavaScript that provides collections which prevent the direct mutation of objects and arrays. It serves as an immutable state management tool and functional programming utility, ensuring that data remains unchanged after creation to simplify change detection and state tracking. The library enables the maintenance of application state by producing new versions of data structures during updates. It focuses on efficient data comparison by checking actual content instead of memory references and supports a functional programming workflow to prevent

    TypeScript
    在 GitHub 上查看↗33,060
  • google/protobufgoogle 的头像

    google/protobuf

    71,412在 GitHub 上查看↗

    Protocol Buffers is a binary serialization framework used to encode structured information into compact payloads to reduce network bandwidth and storage. It functions as a cross-language data interchange standard that enables different platforms and languages to exchange structured data using a shared schema. The project includes an interface definition language compiler that transforms schema definitions into type-safe source code for multiple target programming languages. This mechanism decouples data structures from specific language memory layouts and ensures consistent data handling acro

    C++
    在 GitHub 上查看↗71,412
  • hrldcpr/pcollectionshrldcpr 的头像

    hrldcpr/pcollections

    784在 GitHub 上查看↗

    A Persistent Java Collections Library

    Java
    在 GitHub 上查看↗784
  • jamescourtney/flatsharpjamescourtney 的头像

    jamescourtney/FlatSharp

    570在 GitHub 上查看↗

    Fast, idiomatic C# implementation of Flatbuffers

    C#csharpdeserializationfbs-schema
    在 GitHub 上查看↗570
  • martinus/robin-hood-hashingmartinus 的头像

    martinus/robin-hood-hashing

    1,613在 GitHub 上查看↗

    Fast & memory efficient hashtable based on robin hood hashing for C++11/14/17/20

    C++
    在 GitHub 上查看↗1,613
  • mauriciosantos/buckets-jsmauriciosantos 的头像

    mauriciosantos/Buckets-JS

    1,257在 GitHub 上查看↗

    A complete, fully tested and documented data structure library written in pure JavaScript.

    JavaScriptbagbinary-heapbinary-search
    在 GitHub 上查看↗1,257
  • akkadotnet/hyperionakkadotnet 的头像

    akkadotnet/Hyperion

    281在 GitHub 上查看↗

    Polymorphic serialization for .NET

    C#dotnetdotnet-corehyperion
    在 GitHub 上查看↗281
  • pascaldekloe/colferP

    pascaldekloe/colfer

    0在 GitHub 上查看↗

    Colfer is a binary serialization format optimized for speed and size.

    在 GitHub 上查看↗0
  • arximboldi/immerarximboldi 的头像

    arximboldi/immer

    2,854在 GitHub 上查看↗

    Postmodern immutable and persistent data structures for C++ — value semantics at scale

    C++
    在 GitHub 上查看↗2,854
  • gvinciguerra/pgm-indexgvinciguerra 的头像

    gvinciguerra/PGM-index

    872在 GitHub 上查看↗

    🏅State-of-the-art learned data structure that enables fast lookup, predecessor, range searches and updates in arrays of billions of items using orders of magnitude less space than traditional indexes

    C++
    在 GitHub 上查看↗872