awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 dépôts

Awesome GitHub RepositoriesDedicated Connection Threads

Assigns each client connection its own dedicated thread for listening, processing, and responding to requests.

Distinct from Multi-Threaded Request Handling: Distinct from Multi-Threaded Request Handling: specifically assigns one thread per connection rather than distributing work across a shared pool.

Explore 2 awesome GitHub repositories matching software engineering & architecture · Dedicated Connection Threads. Refine with filters or upvote what's useful.

Awesome Dedicated Connection Threads GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • oceanbase/miniobAvatar de oceanbase

    oceanbase/miniob

    4,318Voir sur GitHub↗

    MiniOB is an open-source educational relational database kernel designed for learning the internals of database systems. It implements a dual-engine storage architecture combining B+ Tree and LSM-Tree, supports SQL parsing and query execution, and provides transactional processing with multi-version concurrency control. The system communicates with clients using the MySQL wire protocol and includes a vector database extension for storing and querying high-dimensional vectors. The project distinguishes itself through its comprehensive coverage of core database concepts in a single, learnable c

    Assign each client connection its own thread that listens for messages, processes SQL, and sends responses.

    C++classroomcplusplusdatabase
    Voir sur GitHub↗4,318
  • glock45/swifterAvatar de glock45

    glock45/swifter

    4,018Voir sur GitHub↗

    Swifter est un moteur de serveur HTTP léger et une bibliothèque réseau pour le langage de programmation Swift. Il fournit une couche réseau minimale conçue pour héberger des services web internes, construire des applications côté serveur et implémenter des serveurs HTTP personnalisés. Le projet permet la création de services web embarqués pour le contrôle à distance ou le monitoring d'état et prend en charge l'hébergement web léger avec une empreinte minimale. Ses capacités couvrent la gestion des connexions TCP brutes et des sockets réseau, utilisant un cycle requête-réponse pour parser les données entrantes en requêtes HTTP et les mapper vers des fonctions de gestionnaire.

    Processes incoming HTTP requests sequentially on a blocking thread.

    Swift
    Voir sur GitHub↗4,018
  1. Home
  2. Software Engineering & Architecture
  3. High-Throughput Task Processing
  4. Network Request Processing
  5. Multi-Threaded Request Handling
  6. Dedicated Connection Threads

Explorer les sous-tags

  • Blocking Request HandlersRequest processing mechanisms that block the execution thread until a single connection is fully handled. **Distinct from Dedicated Connection Threads:** Distinct from Dedicated Connection Threads: focuses on the synchronous/blocking nature of the processing rather than just the threading model.