awesome-repositories.com
Blog
awesome-repositories.com

Discover the best open-source repositories with AI-powered search.

ExploreCurated searchesOpen-source alternativesSelf-hosted softwareBlogSitemap
ProjectAboutHow we rankPressMCP server
LegalPrivacyTerms
ยฉ 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/jctoolsJCTools avatar

    JCTools/JCTools

    3,851View on 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
    View on GitHubโ†—3,851
  • cameron314/readerwriterqueuecameron314 avatar

    cameron314/readerwriterqueue

    4,576View on 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++
    View on GitHubโ†—4,576
  • workiva/go-datastructuresWorkiva avatar

    Workiva/go-datastructures

    7,901View on 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
    View on GitHubโ†—7,901

AI search

Explore more awesome repositories

Describe what you need in plain English โ€” the AI ranks thousands of curated open-source projects by relevance.

Find more with AI search
  • rigtorp/mpmcqueuerigtorp avatar

    rigtorp/MPMCQueue

    1,532View on GitHubโ†—

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

    C++
    View on GitHubโ†—1,532
  • facebook/follyfacebook avatar

    facebook/folly

    30,412View on 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++
    View on GitHubโ†—30,412
  • lmax-exchange/disruptorLMAX-Exchange avatar

    LMAX-Exchange/disruptor

    18,375View on 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
    View on GitHubโ†—18,375
  • light-city/cplusplusthingsLight-City avatar

    Light-City/CPlusPlusThings

    43,236View on 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
    View on GitHubโ†—43,236
  • ruby-concurrency/concurrent-rubyruby-concurrency avatar

    ruby-concurrency/concurrent-ruby

    5,830View on 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
    View on GitHubโ†—5,830
  • apache/brpcapache avatar

    apache/brpc

    17,545View on 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
    View on GitHubโ†—17,545
  • taskforcesh/bullmqtaskforcesh avatar

    taskforcesh/bullmq

    8,432View on 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
    View on GitHubโ†—8,432
  • walter201230/pythonwalter201230 avatar

    walter201230/Python

    26,516View on 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
    View on GitHubโ†—26,516
  • progschj/threadpoolprogschj avatar

    progschj/ThreadPool

    8,756View on 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++
    View on GitHubโ†—8,756
  • gutjuri/triesgutjuri avatar

    gutjuri/tries

    13View on GitHubโ†—

    Tries in C++

    C++
    View on GitHubโ†—13
  • gvinciguerra/pgm-indexgvinciguerra avatar

    gvinciguerra/PGM-index

    872View on 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++
    View on GitHubโ†—872
  • serge-sans-paille/frozenserge-sans-paille avatar

    serge-sans-paille/frozen

    1,551View on GitHubโ†—

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

    C++
    View on GitHubโ†—1,551
  • flesler/hashmapflesler avatar

    flesler/hashmap

    382View on GitHubโ†—

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

    JavaScript
    View on GitHubโ†—382
  • deckarep/golang-setdeckarep avatar

    deckarep/golang-set

    4,690View on 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
    View on GitHubโ†—4,690
  • slavenf/sfl-libraryslavenf avatar

    slavenf/sfl-library

    157View on GitHubโ†—

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

    C++
    View on GitHubโ†—157
  • alandefreitas/smallalandefreitas avatar

    alandefreitas/small

    150View on GitHubโ†—

    C++ small containers

    C++
    View on GitHubโ†—150
  • martinus/robin-hood-hashingmartinus avatar

    martinus/robin-hood-hashing

    1,613View on GitHubโ†—

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

    C++
    View on GitHubโ†—1,613
  • ned14/outcomened14 avatar

    ned14/outcome

    774View on GitHubโ†—
    C++boostc-plus-plus
    View on GitHubโ†—774
  • david-haim/concurrencppDavid-Haim avatar

    David-Haim/concurrencpp

    2,755View on GitHubโ†—

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

    C++
    View on GitHubโ†—2,755
  • mauriciosantos/buckets-jsmauriciosantos avatar

    mauriciosantos/Buckets-JS

    1,257View on GitHubโ†—

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

    JavaScriptbagbinary-heapbinary-search
    View on GitHubโ†—1,257
  • bloomen/transwarpbloomen avatar

    bloomen/transwarp

    633View on GitHubโ†—

    A header-only C++ library for task concurrency

    C++
    View on GitHubโ†—633
  • preshing/junctionpreshing avatar

    preshing/junction

    1,452View on GitHubโ†—

    Concurrent data structures in C++

    C++
    View on GitHubโ†—1,452
  • facebook/immutable-jsfacebook avatar

    facebook/immutable-js

    33,060View on 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
    View on GitHubโ†—33,060
  • bits-and-blooms/bitsetbits-and-blooms avatar

    bits-and-blooms/bitset

    1,505View on GitHubโ†—

    Go package implementing bitsets

    Go
    View on GitHubโ†—1,505
  • arximboldi/immerarximboldi avatar

    arximboldi/immer

    2,854View on GitHubโ†—

    Postmodern immutable and persistent data structures for C++ โ€” value semantics at scale

    C++
    View on GitHubโ†—2,854
  • greg7mdp/parallel-hashmapgreg7mdp avatar

    greg7mdp/parallel-hashmap

    3,192View on GitHubโ†—

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

    C++
    View on GitHubโ†—3,192
  • bits-and-blooms/bloombits-and-blooms avatar

    bits-and-blooms/bloom

    2,791View on GitHubโ†—

    Go package implementing Bloom filters, used by many important systems

    Go
    View on GitHubโ†—2,791