awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
Back to cameron314/concurrentqueue

Open-source alternatives to Concurrentqueue

30 open-source projects similar to cameron314/concurrentqueue, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best Concurrentqueue alternative.

  • jctools/jctoolsAvatar de JCTools

    JCTools/JCTools

    3,851Ver en GitHub↗

    JCTools is a Java concurrency library providing a collection of lock-less and wait-free data structures. It serves as a toolkit for managing thread-safe data exchange, specifically designed to optimize high-throughput messaging and producer-consumer patterns in multi-threaded applications. The library distinguishes itself by implementing specialized queue structures that minimize contention and maximize throughput. By utilizing techniques such as cache-line padding, memory-barrier-based synchronization, and relaxed-consistency memory ordering, it avoids the performance bottlenecks often assoc

    Javaawesomebenchmarksconcurrency
    Ver en GitHub↗3,851
  • cameron314/readerwriterqueueAvatar de cameron314

    cameron314/readerwriterqueue

    4,576Ver en GitHub↗

    This project is a single-producer single-consumer concurrent queue for C++ designed for lock-free data exchange between threads. It provides a thread-safe mechanism to transfer data without the use of mutexes or locks. The queue is implemented as a contiguous circular buffer that supports dynamic capacity growth to prevent data loss when the queue reaches its limit. It utilizes atomic synchronization and wait-free index management to coordinate data access between the writing and reading threads. The library covers inter-thread communication and buffer management, offering both blocking and

    C++
    Ver en GitHub↗4,576
  • workiva/go-datastructuresAvatar de Workiva

    Workiva/go-datastructures

    7,901Ver en GitHub↗

    go-datastructures is a collection of thread-safe and lock-free data structures designed for high-performance concurrent applications in Go. It provides a modular library of specialized algorithmic toolsets, including a lock-free collection library and an immutable data structure library. The project distinguishes itself through a suite of persistent AVL trees and hash array mapped tries that use branch-copying to preserve previous versions. It also implements non-blocking hash maps, queues, and tries that enable linearizable snapshots and concurrent updates without the use of mutual exclusion

    Go
    Ver en GitHub↗7,901

Búsqueda con IA

Explora más repositorios increíbles

Describe lo que necesitas en lenguaje sencillo: la IA clasifica miles de proyectos open-source curados por relevancia.

Find more with AI search
  • rigtorp/mpmcqueueAvatar de rigtorp

    rigtorp/MPMCQueue

    1,532Ver en GitHub↗

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

    C++
    Ver en GitHub↗1,532
  • facebook/follyAvatar de facebook

    facebook/folly

    30,412Ver en GitHub↗

    Folly is a collection of high-performance C++ components designed as an extension to the C++ Standard Library for large-scale production environments. It provides specialized toolkits for memory management, concurrency, asynchronous workflows, and low-latency input and output operations. The project distinguishes itself through the provision of lock-free containers and bounded queues to minimize contention in multi-threaded applications, alongside a framework for managing deferred computations using futures and promises. It further offers specialized memory arenas and optimized implementation

    C++
    Ver en GitHub↗30,412
  • lmax-exchange/disruptorAvatar de LMAX-Exchange

    LMAX-Exchange/disruptor

    18,375Ver en GitHub↗

    The Disruptor is a lock-free inter-thread messaging library and high-performance event bus. It implements a concurrent ring buffer designed for high-concurrency and low-latency message sequencing. The project utilizes a specific messaging architecture to eliminate lock contention, enabling high-throughput event routing and the exchange of continuous event streams between threads. It ensures strict first-in-first-out ordering and immediate data visibility across processing threads. The library provides capabilities for lock-free data streaming, sequential data ordering, and sequence-based eve

    Javaconcurrencydisruptorjava
    Ver en GitHub↗18,375
  • light-city/cplusplusthingsAvatar de Light-City

    Light-City/CPlusPlusThings

    43,236Ver en GitHub↗

    CPlusPlusThings is an educational and technical resource collection featuring C++ coding exercises, a concurrency library, and a programming guide. It provides structured drills and real-world challenges to reinforce language proficiency and offers technical analysis of the internal implementation of the standard library. The project implements software architecture patterns and industry-standard idioms, including the singleton pattern and resource acquisition is initialization. It also includes a framework for building logging systems with configurable severity levels and output destinations

    C++cpluspluscppcpp11
    Ver en GitHub↗43,236
  • ruby-concurrency/concurrent-rubyAvatar de ruby-concurrency

    ruby-concurrency/concurrent-ruby

    5,830Ver en GitHub↗

    Concurrent Ruby is a comprehensive concurrency toolkit for the Ruby language that provides thread-safe data structures, synchronization primitives, and asynchronous execution patterns. It implements core concurrency abstractions including an actor model framework where isolated actors communicate through asynchronous message passing, a future and promise system for composing non-blocking operations, and thread pool executors that manage reusable worker threads for concurrent task execution. The library distinguishes itself through a broad set of coordination mechanisms that go beyond basic th

    Ruby
    Ver en GitHub↗5,830
  • apache/brpcAvatar de apache

    apache/brpc

    17,545Ver en GitHub↗

    brpc is a high-performance C++ RPC framework and network programming library designed for building distributed systems. It functions as a multi-protocol RPC server capable of hosting and detecting multiple communication protocols, including gRPC, Thrift, HTTP, Redis, and Memcached, on a single TCP port. The project distinguishes itself through high-throughput data transport and memory efficiency, utilizing RDMA-based transport to bypass the kernel TCP stack and zero-copy memory management to eliminate data duplication. It also implements the Raft algorithm for consensus-based state replicatio

    C++rpc
    Ver en GitHub↗17,545
  • taskforcesh/bullmqAvatar de taskforcesh

    taskforcesh/bullmq

    8,432Ver en GitHub↗

    BullMQ is a Redis-backed message queue library and background processor designed for distributed task queueing. It functions as a distributed queue manager and task scheduler, utilizing Redis to manage asynchronous job processing and persistence. The system distinguishes itself through its role as a job workflow orchestrator, enabling the definition of complex parent-child job dependencies and hierarchies for multi-step workflows. It provides sandboxed process execution to isolate heavy workloads and prevent event loop blocking, alongside distributed rate limiting to protect downstream servic

    TypeScriptbackground-jobselixirnodejs
    Ver en GitHub↗8,432
  • walter201230/pythonAvatar de walter201230

    walter201230/Python

    26,516Ver en GitHub↗

    Python is a high-level, interpreted programming language designed for readability and versatility. It operates via a bytecode-based virtual machine and manages memory automatically through reference-counting garbage collection. The language supports multiple programming paradigms, including object-oriented, imperative, and functional styles, and provides a comprehensive standard library for system operations, networking, and data handling. The language is distinguished by its dynamic nature, allowing for runtime object introspection and metaclass-driven class creation. It utilizes protocol-ba

    Pythonpythonpython3
    Ver en GitHub↗26,516
  • progschj/threadpoolAvatar de progschj

    progschj/ThreadPool

    8,756Ver en GitHub↗

    ThreadPool is a C++ thread management library designed to execute asynchronous tasks using a fixed number of background worker threads. It functions as a concurrent task executor that reduces the overhead associated with the repeated creation and destruction of threads. The library utilizes a synchronized queue to distribute workloads across multiple CPU cores and employs variadic templates to accept any callable function with arbitrary arguments. The system manages concurrency through mutex-protected shared state and condition-variable signaling to wake idle threads. It also provides a mech

    C++
    Ver en GitHub↗8,756
  • gutjuri/triesAvatar de gutjuri

    gutjuri/tries

    13Ver en GitHub↗

    Tries in C++

    C++
    Ver en GitHub↗13
  • gvinciguerra/pgm-indexAvatar de gvinciguerra

    gvinciguerra/PGM-index

    872Ver en 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++
    Ver en GitHub↗872
  • serge-sans-paille/frozenAvatar de serge-sans-paille

    serge-sans-paille/frozen

    1,551Ver en GitHub↗

    a header-only, constexpr alternative to gperf for C++14 users

    C++
    Ver en GitHub↗1,551
  • flesler/hashmapAvatar de flesler

    flesler/hashmap

    382Ver en GitHub↗

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

    JavaScript
    Ver en GitHub↗382
  • deckarep/golang-setAvatar de deckarep

    deckarep/golang-set

    4,690Ver en 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
    Ver en GitHub↗4,690
  • slavenf/sfl-libraryAvatar de slavenf

    slavenf/sfl-library

    157Ver en GitHub↗

    C++11/20 library that provides staticvector, smallvector, staticmap, smallmap, flatmap, staticflatmap, smallflatmap, staticunorderedmap, smallunordered_map, etc.

    C++
    Ver en GitHub↗157
  • alandefreitas/smallAvatar de alandefreitas

    alandefreitas/small

    150Ver en GitHub↗

    C++ small containers

    C++
    Ver en GitHub↗150
  • martinus/robin-hood-hashingAvatar de martinus

    martinus/robin-hood-hashing

    1,613Ver en GitHub↗

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

    C++
    Ver en GitHub↗1,613
  • ned14/outcomeAvatar de ned14

    ned14/outcome

    774Ver en GitHub↗
    C++boostc-plus-plus
    Ver en GitHub↗774
  • david-haim/concurrencppAvatar de David-Haim

    David-Haim/concurrencpp

    2,755Ver en GitHub↗

    Modern concurrency for C++. Tasks, executors, timers and C++20 coroutines to rule them all

    C++
    Ver en GitHub↗2,755
  • mauriciosantos/buckets-jsAvatar de mauriciosantos

    mauriciosantos/Buckets-JS

    1,257Ver en GitHub↗

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

    JavaScriptbagbinary-heapbinary-search
    Ver en GitHub↗1,257
  • bloomen/transwarpAvatar de bloomen

    bloomen/transwarp

    633Ver en GitHub↗

    A header-only C++ library for task concurrency

    C++
    Ver en GitHub↗633
  • preshing/junctionAvatar de preshing

    preshing/junction

    1,452Ver en GitHub↗

    Concurrent data structures in C++

    C++
    Ver en GitHub↗1,452
  • facebook/immutable-jsAvatar de facebook

    facebook/immutable-js

    33,060Ver en 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
    Ver en GitHub↗33,060
  • bits-and-blooms/bitsetAvatar de bits-and-blooms

    bits-and-blooms/bitset

    1,505Ver en GitHub↗

    Go package implementing bitsets

    Go
    Ver en GitHub↗1,505
  • arximboldi/immerAvatar de arximboldi

    arximboldi/immer

    2,854Ver en GitHub↗

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

    C++
    Ver en GitHub↗2,854
  • greg7mdp/parallel-hashmapAvatar de greg7mdp

    greg7mdp/parallel-hashmap

    3,192Ver en GitHub↗

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

    C++
    Ver en GitHub↗3,192
  • bits-and-blooms/bloomAvatar de bits-and-blooms

    bits-and-blooms/bloom

    2,791Ver en GitHub↗

    Go package implementing Bloom filters, used by many important systems

    Go
    Ver en GitHub↗2,791