awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 Repos

Awesome GitHub RepositoriesStandard Library Threading

Implementation of concurrency using standardized language threading libraries.

Distinct from Multi-Threaded Implementations: Existing candidates are for specific platforms like WebAssembly or hardware emulators; this is for general standard library usage.

Explore 2 awesome GitHub repositories matching programming languages & runtimes · Standard Library Threading. Refine with filters or upvote what's useful.

Awesome Standard Library Threading GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • cpp-best-practices/cppbestpracticesAvatar von cpp-best-practices

    cpp-best-practices/cppbestpractices

    8,766Auf GitHub ansehen↗

    This project is a curated collection of guidelines and technical resources designed to improve C++ code safety, maintainability, and performance. It provides a comprehensive set of coding standards and best practices for establishing consistent naming, formatting, and structural patterns across C++ codebases. The guide offers specific technical advice on performance optimization, including methods for minimizing object copying, optimizing memory allocation, and reducing compilation cycles. It also provides a directory of tooling recommendations for implementing static analysis, fuzz testing,

    Explains running multiple operations simultaneously using standard threading libraries to avoid platform-specific APIs.

    best-practicescpp
    Auf GitHub ansehen↗8,766
  • gevent/geventAvatar von gevent

    gevent/gevent

    6,440Auf GitHub ansehen↗

    Gevent is a Python coroutine concurrency library and asynchronous task manager designed for high-concurrency I/O tasks. It provides a cooperative networking framework for building asynchronous TCP, UDP, and HTTP servers, as well as a WSGI web server implementation for hosting web applications. The project is distinguished by its standard library monkey-patching tool, which replaces blocking synchronous functions with cooperative versions to enable asynchronous behavior in third-party code. This allows for a cooperative multitasking workflow where the system yields execution during I/O waits t

    Implements a compatible version of the standard threading API using lightweight coroutines to maintain compatibility.

    Pythonasynciocoroutinesgreenlet
    Auf GitHub ansehen↗6,440
  1. Home
  2. Programming Languages & Runtimes
  3. Standard Library Threading

Unter-Tags erkunden

  • Threading API EmulationProviding a compatible implementation of a standard threading API using lightweight concurrency primitives. **Distinct from Standard Library Threading:** Distinct from standard threading by providing an emulation layer that uses coroutines instead of OS threads.