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
·

2 repositorios

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

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • oceanbase/miniobAvatar de oceanbase

    oceanbase/miniob

    4,318Ver en 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
    Ver en GitHub↗4,318
  • glock45/swifterAvatar de glock45

    glock45/swifter

    4,018Ver en GitHub↗

    Swifter is a lightweight HTTP server engine and networking library for the Swift programming language. It provides a minimal networking layer designed for hosting internal web services, building server-side applications, and implementing custom HTTP servers. The project enables the creation of embedded web services for remote control or status monitoring and supports lightweight web hosting with a minimal footprint. Its capabilities cover the management of raw TCP connections and network sockets, using a request-response cycle to parse incoming data into HTTP requests and map them to handler

    Processes incoming HTTP requests sequentially on a blocking thread.

    Swift
    Ver en 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

Explorar subetiquetas

  • 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.