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,730在 GitHub 上查看↗

    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,215在 GitHub 上查看↗

    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,196在 GitHub 上查看↗

    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,030在 GitHub 上查看↗

    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,560在 GitHub 上查看↗

    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,794在 GitHub 上查看↗

    SpoofDPI is a network application and local proxy server designed as an anti-censorship tool. It functions as a deep packet inspection circumvention proxy that fragments and modifies outbound HTTP requests to evade network filters and censorship. The project achieves this by implementing HTTP request fragmentation, splitting single requests into multiple smaller packets to confuse firewalls. It also performs TCP stream manipulation and network traffic obfuscation to hide the nature of web requests and bypass regional content blocks. The system includes capabilities for transparent network fo

    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,703在 GitHub 上查看↗

    Boom 是一个基于 Go 的 HTTP 负载生成器和压力测试工具。它作为 ApacheBench 工具的现代替代品,旨在向 Web 服务器发送大量请求以测量性能和稳定性。 该工具专注于通过模拟高流量负载来识别 Web 服务和 API 的崩溃点。它用于基准测试服务器在响应时间增加或出现错误之前每秒可以处理多少请求。 其功能涵盖 Web 服务器压力测试和 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,573在 GitHub 上查看↗

    这是一个用 Go 编写的网络路由工具,作为四层流量路由器运行。它是一个 TCP 网络转发器,旨在将传入流量从本地端口路由到远程目标地址。 该项目实现了反向代理和本地端口转发功能,将网络数据包从特定的本地接口重定向到后端服务器。 它通过将监听器绑定到本地 IP 地址和端口,并在客户端与远程目标之间传输原始字节来管理网络流量路由。

    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,391在 GitHub 上查看↗

    这是一个性能基准测试框架和网络协议压力测试器,旨在评估高并发条件下的系统稳定性。它作为一个命令行实用程序,模拟海量并发请求,以识别基础设施瓶颈并验证服务可靠性。 该工具通过其协议无关的编排脱颖而出,允许跨包括 HTTP、WebSocket、gRPC 和 Radius 在内的多种标准进行负载测试。它支持复杂的请求配置,使用户能够注入自定义头部、二进制数据和外部有效载荷,以复制多样的客户端行为。为了确保压力测试期间的数据完整性,该框架利用可插拔的验证中间件,实时针对服务器响应执行自定义逻辑。 除了基本的负载生成外,该工具还通过将性能指标聚合到实时流中以监控吞吐量、延迟和错误分布,提供了全面的可观测性。它生成详细的统计报告,并与外部智能服务集成,以提供系统性能的自动化分析和评分。该软件完全通过命令行参数进行配置和管理,促进了集成到自动化测试工作流中。

    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.