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

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

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

DeveloperPaul123/thread-pool

0
View on GitHub↗
556 星标·42 分支·C++·MIT·3 次浏览DeveloperPaul123.github.io/thread-pool↗

Thread Pool

A modern, fast, lightweight thread pool library based on C++2x

Features

  • Concurrency Libraries - Modern C++20 thread pool.

Star 历史

developerpaul123/thread-pool 的 Star 历史图表developerpaul123/thread-pool 的 Star 历史图表

AI 搜索

探索更多 awesome 仓库

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

Start searching with AI

常见问题解答

developerpaul123/thread-pool 是做什么的?

A modern, fast, lightweight thread pool library based on C++2x

developerpaul123/thread-pool 的主要功能有哪些?

developerpaul123/thread-pool 的主要功能包括:Concurrency Libraries。

developerpaul123/thread-pool 有哪些开源替代品?

developerpaul123/thread-pool 的开源替代品包括: jctools/jctools — JCTools is a Java concurrency library providing a collection of lock-less and wait-free data structures. It serves as… bloomen/transwarp — A header-only C++ library for task concurrency. cameron314/concurrentqueue — ConcurrentQueue is a header-only C++ template library that provides a lock-free data structure for multi-producer… cpp-taskflow/cpp-taskflow — Cpp-taskflow is a C++ task-parallelism framework and task graph scheduler designed to manage and execute complex… david-haim/concurrencpp — Modern concurrency for C++. Tasks, executors, timers and C++20 coroutines to rule them all. fawdlstty/taskpool — Modern C++ 任务池,将作为纯同步调用方式实现完全等价于 async/await 的效果.

Thread Pool 的开源替代方案

相似的开源项目,按与 Thread Pool 的功能重合度排序。
  • jctools/jctoolsJCTools 的头像

    JCTools/JCTools

    3,851在 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
    在 GitHub 上查看↗3,851
  • 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
  • cpp-taskflow/cpp-taskflowcpp-taskflow 的头像

    cpp-taskflow/cpp-taskflow

    12,014在 GitHub 上查看↗

    Cpp-taskflow is a C++ task-parallelism framework and task graph scheduler designed to manage and execute complex dependency graphs of parallel tasks across CPU and GPU hardware. It provides a parallel algorithm library for high-performance implementations of reductions, sorts, pipelines, and iterations. The framework distinguishes itself through its ability to offload heavy computational workloads from a task graph to graphics processors for acceleration. It also includes a task profiling tool and a performance analysis interface for visualizing task execution flow and dependency structures t

    C++
    在 GitHub 上查看↗12,014
  • bloomen/transwarpbloomen 的头像

    bloomen/transwarp

    633在 GitHub 上查看↗

    A header-only C++ library for task concurrency

    C++
    在 GitHub 上查看↗633
  • 查看 Thread Pool 的所有 11 个替代方案→