awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم MCPحولكيفية ترتيب النتائجالصحافة
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 مستودعات

Awesome GitHub RepositoriesAsynchronous TCP Frameworks

Frameworks for implementing non-blocking TCP connection management and custom frame-based protocols.

Distinct from TCP Protocol Implementations: Distinct from TCP Protocol Implementations: focuses on the framework and lifecycle management of asynchronous connections rather than just a single protocol request-response pattern.

Explore 4 awesome GitHub repositories matching networking & communication · Asynchronous TCP Frameworks. Refine with filters or upvote what's useful.

Awesome Asynchronous TCP Frameworks GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • walkor/workermanالصورة الرمزية لـ walkor

    walkor/workerman

    11,547عرض على GitHub↗

    Workerman is an event-driven asynchronous socket framework for PHP. It provides the core components necessary to build high-concurrency network servers, including an asynchronous TCP framework, a coroutine library for task management, and dedicated implementations for HTTP and WebSocket servers. The project enables the development of specialized network services using custom frame-based communication protocols. It supports both inbound concurrent server implementation and asynchronous outbound connectivity to remote services. The framework covers a broad range of network programming capabili

    Provides a tool for creating non-blocking TCP connections and custom frame-based protocols for high-volume data transmission.

    PHPasynchronousevent-drivenhigh-performance
    عرض على GitHub↗11,547
  • aceld/zinxالصورة الرمزية لـ aceld

    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

    Provides a lightweight, modular framework for building TCP servers in Go with connection handling and message routing.

    Gogame-servergogolang
    عرض على GitHub↗7,730
  • monoio-rs/monoioالصورة الرمزية لـ monoio-rs

    monoio-rs/monoio

    5,033عرض على GitHub↗

    monoio هو وقت تشغيل (Runtime) ومنفذ غير متزامن عالي الأداء للغة Rust. ينفذ نموذج تزامن يعتمد على خيط معالجة لكل نواة (Thread-per-core) يقوم بتثبيت المهام على أنوية معينة للمعالج للقضاء على تكاليف المزامنة وهجرة البيانات. يستفيد وقت التشغيل من واجهة io_uring لإجراء استدعاءات نظام غير محظورة وتقليل نسخ الذاكرة بين وضع النواة ووضع المستخدم. يستخدم برنامج تشغيل I/O عالي الأداء وتغليف تدفق TCP بدون نسخ (Zero-copy) لإدارة نقل البيانات عبر مخازن الذاكرة المشتركة. يوفر المشروع إمكانيات لإدارة تقارب أنوية المعالج، وبرمجة النظام منخفضة زمن الانتقال، والشبكات عالية الأداء. يتضمن برنامج تشغيل I/O قابل للتوصيل وتكوينات لقفل الذاكرة للحفاظ على مخازن مؤقتة مستقرة بين مساحة المستخدم والنواة.

    Implements zero-copy TCP stream wrapping to minimize memory copying during network data transfers.

    Rust
    عرض على GitHub↗5,033
  • qihoo360/evppالصورة الرمزية لـ Qihoo360

    Qihoo360/evpp

    3,767عرض على GitHub↗

    evpp is a C++ network library and framework designed for building high-performance network services using TCP, UDP, and HTTP protocols. It provides an asynchronous event loop to manage nonblocking I/O operations and concurrent network connections across multiple threads. The framework includes specialized tools for asynchronous DNS resolution and a system for asynchronous task scheduling using a managed thread pool. It also features a nonblocking HTTP server and client with integrated connection pooling. The project covers low-level transport layer connectivity for TCP and UDP, as well as hi

    Provides an asynchronous framework for managing TCP/UDP connection lifecycles and scalable data transmission.

    C++
    عرض على GitHub↗3,767
  1. Home
  2. Networking & Communication
  3. TCP Protocol Implementations
  4. Asynchronous TCP Frameworks

استكشف الوسوم الفرعية

  • Zero-Copy TCP Stream WrappingWrappers for TCP streams that utilize raw buffers to avoid memory duplication during asynchronous transfers. **Distinct from Asynchronous TCP Frameworks:** Focuses specifically on zero-copy buffer wrapping for TCP streams rather than general connection frameworks.