awesome-repositories.com
ब्लॉग
MCP
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टMCP सर्वरहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेस
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

9 रिपॉजिटरी

Awesome GitHub RepositoriesThread-Per-Connection Models

Architectural patterns where each client connection is managed by a dedicated worker thread.

Distinct from Process-Per-Connection Architectures: None of the candidates describe the general thread-per-connection concurrency model for web servers.

Explore 9 awesome GitHub repositories matching software engineering & architecture · Thread-Per-Connection Models. Refine with filters or upvote what's useful.

Awesome Thread-Per-Connection Models GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • aceld/zinxaceld का अवतार

    aceld/zinx

    7,730GitHub पर देखें↗

    Zinx is a lightweight TCP server framework written in Go that provides a structured foundation for building scalable network applications. It combines a goroutine-pool worker model for concurrency control with message-ID-based routing, enabling efficient packet dispatching to registered handler functions. The framework distinguishes itself through its modular plugin architecture, which organizes server components like routers, connections, and message modules as interchangeable plugins for extensibility. It uses packet-header length prefixing for reliable TCP stream framing, assigns a dedicat

    Assigns a dedicated goroutine per TCP connection for continuous packet reading and non-blocking I/O.

    Gogame-servergogolang
    GitHub पर देखें↗7,730
  • nanohttpd/nanohttpdNanoHttpd का अवतार

    NanoHttpd/nanohttpd

    7,215GitHub पर देखें↗

    NanoHTTPD is a lightweight, embeddable HTTP server for Java applications. It allows developers to integrate web server capabilities directly into a Java project to handle incoming requests without requiring a standalone installation. The project provides specialized implementations for an HTTPS web server, a WebSocket server for bidirectional real-time communication, and a static file web server. These capabilities enable secure network traffic through SSL certificates and the delivery of local files with automatic MIME type detection. The server includes systems for request routing and hand

    Assigns a dedicated worker thread to manage each client connection until the request-response cycle is completed.

    Java
    GitHub पर देखें↗7,215
  • mariadb/serverMariaDB का अवतार

    MariaDB/server

    7,196GitHub पर देखें↗

    This project is an open source relational database management system and SQL database designed for storing and managing structured data. It functions as a relational database for ensuring consistency and reliability, while also operating as a vector database for storing and querying high-dimensional vector embeddings. The system incorporates a columnar storage engine to optimize analytical query processing and large-scale data aggregation. It further enables vector similarity search, allowing users to find similar items by querying vector embeddings. The software covers a broad capability su

    Employs a model where each client connection is managed by a dedicated worker thread.

    C++amazon-web-servicesdatabasefulltext-search
    GitHub पर देखें↗7,196
  • balloonwj/cppguideballoonwj का अवतार

    balloonwj/CppGuide

    6,030GitHub पर देखें↗

    CppGuide is a curated collection of educational resources and practical guides focused on C++ server development, Linux kernel internals, concurrent programming, network protocols, and security exploitation. It provides structured learning paths for backend developers, covering everything from interview preparation to building high-performance network servers and understanding operating system fundamentals. The guide distinguishes itself by offering in-depth, hands-on tutorials that walk through real-world implementations, including building a Redis-like server from scratch, designing custom

    Explains per-thread context execution for kernel-level isolation.

    GitHub पर देखें↗6,030
  • remzi-arpacidusseau/ostep-projectsremzi-arpacidusseau का अवतार

    remzi-arpacidusseau/ostep-projects

    5,560GitHub पर देखें↗

    This is a collection of academic programming projects that accompany an operating systems textbook, designed to teach core OS concepts through hands-on implementation. The projects span the major subsystems of an operating system, including process scheduling, memory management, file systems, and concurrency, with students building components from scratch in a simulated environment. The projects are structured to cover the full range of OS internals, from low-level kernel development to user-space system programming. Students implement lottery-based CPU schedulers, dynamic heap memory allocat

    Creates a multi-threaded HTTP server that handles multiple client requests simultaneously.

    C
    GitHub पर देखें↗5,560
  • xvzc/spoofdpixvzc का अवतार

    xvzc/spoofdpi

    4,794GitHub पर देखें↗

    SpoofDPI एक नेटवर्क एप्लिकेशन और लोकल प्रॉक्सी सर्वर है जिसे एंटी-सेंसरशिप टूल के रूप में डिज़ाइन किया गया है। यह एक डीप पैकेट इंस्पेक्शन सरकमवेंशन प्रॉक्सी के रूप में कार्य करता है जो नेटवर्क फिल्टर्स और सेंसरशिप से बचने के लिए आउटबाउंड HTTP रिक्वेस्ट्स को फ्रैगमेंट और मॉडिफाई करता है। यह प्रोजेक्ट HTTP रिक्वेस्ट फ्रैगमेंटेशन को लागू करके इसे प्राप्त करता है, फायरवॉल को भ्रमित करने के लिए एकल रिक्वेस्ट्स को कई छोटे पैकेट्स में विभाजित करता है। यह वेब रिक्वेस्ट्स की प्रकृति को छिपाने और क्षेत्रीय कंटेंट ब्लॉक्स को बायपास करने के लिए TCP स्ट्रीम मैनिपुलेशन और नेटवर्क ट्रैफिक ऑबफस्केशन भी करता है। इस सिस्टम में पारदर्शी नेटवर्क फॉरवर्डिंग और फाइल-आधारित कॉन्फ़िगरेशन मैनेजमेंट की क्षमताएं शामिल हैं ताकि यह समन्वय किया जा सके कि नेटवर्क ट्रैफिक को कैसे संभाला जाए।

    Uses a goroutine-per-connection model to enable non-blocking I/O and parallel processing of network traffic.

    Goanti-censorshipcensorship-circumventioncensorship-free
    GitHub पर देखें↗4,794
  • rakyll/boomrakyll का अवतार

    rakyll/boom

    4,703GitHub पर देखें↗

    Boom एक Go-आधारित HTTP लोड जनरेटर और स्ट्रेस टेस्टिंग टूल है। यह ApacheBench यूटिलिटी के एक आधुनिक विकल्प के रूप में कार्य करता है, जिसे प्रदर्शन और स्थिरता को मापने के लिए वेब सर्वर्स पर अनुरोधों की भारी मात्रा भेजने के लिए डिज़ाइन किया गया है। यह टूल भारी ट्रैफिक लोड का अनुकरण करके वेब सर्विसेज और APIs के ब्रेकिंग पॉइंट की पहचान करने पर केंद्रित है। इसका उपयोग यह बेंचमार्क करने के लिए किया जाता है कि प्रतिक्रिया समय या त्रुटियों में वृद्धि का अनुभव करने से पहले एक सर्वर प्रति सेकंड कितने अनुरोधों को संभाल सकता है। इसकी क्षमताएं स्थिरता के मुद्दों और हार्डवेयर बाधाओं की पहचान करने के लिए वेब सर्वर स्ट्रेस टेस्टिंग और API प्रदर्शन विश्लेषण को कवर करती हैं।

    Utilizes a goroutine-per-connection model to maintain thousands of simultaneous connections without OS thread overhead.

    Go
    GitHub पर देखें↗4,703
  • ilanyu/reverseproxyilanyu का अवतार

    ilanyu/ReverseProxy

    4,573GitHub पर देखें↗

    This is a network routing tool written in Go that functions as a layer 4 traffic router. It serves as a TCP network forwarder designed to route incoming traffic from a local port to a remote destination address. The project implements reverse proxy and local port forwarding capabilities to redirect network packets from a specific local interface to a backend server. It manages network traffic routing by binding listeners to local IP addresses and ports, piping raw bytes between clients and remote destinations.

    Implements a model that assigns a dedicated goroutine to every incoming TCP connection for parallel processing.

    Go
    GitHub पर देखें↗4,573
  • link1st/go-stress-testinglink1st का अवतार

    link1st/go-stress-testing

    4,391GitHub पर देखें↗

    This project is a performance benchmarking framework and network protocol stress tester designed to evaluate system stability under high-concurrency conditions. It functions as a command-line utility that simulates massive volumes of simultaneous requests to identify infrastructure bottlenecks and verify service reliability. The tool distinguishes itself through its protocol-agnostic orchestration, which allows for load testing across diverse standards including HTTP, WebSocket, gRPC, and Radius. It supports complex request configurations, enabling users to inject custom headers, binary data,

    Uses lightweight execution threads to manage millions of simultaneous network connections with minimal memory overhead per request.

    Gogolanggrpcqps
    GitHub पर देखें↗4,391
  1. Home
  2. Software Engineering & Architecture
  3. Thread-Per-Connection Models

सब-टैग एक्सप्लोर करें

  • Goroutine-Per-Connection ModelsAssigns a dedicated goroutine to each TCP connection for continuous packet reading, enabling non-blocking I/O and parallel processing. **Distinct from Thread-Per-Connection Models:** Distinct from Thread-Per-Connection Models: uses goroutines instead of OS threads for per-connection handling.
  • Kernel Thread Context IsolationsAssociates each kernel entry with the current thread's identity, isolating memory space, file descriptors, and privileges to prevent interference. **Distinct from Thread-Per-Connection Models:** Distinct from Thread-Per-Connection Models: focuses on kernel-level thread context isolation, not application-level connection handling.
  • Thread-Per-Connection Web ServersWeb server architectures that create a new thread for each client connection. **Distinct from Thread-Per-Connection Models:** Distinct from Thread-Per-Connection Models: specifically applies the pattern to HTTP request handling.