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

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

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्ट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

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

    walkor/workerman

    11,547GitHub पर देखें↗

    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/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

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

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

    monoio-rs/monoio

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

    monoio, Rust के लिए एक उच्च-प्रदर्शन वाला एसिंक्रोनस रनटाइम और एक्जीक्यूटर है। यह एक थ्रेड-पर-कोर कॉनकरेंसी मॉडल लागू करता है जो सिंक्रोनाइज़ेशन ओवरहेड और डेटा माइग्रेशन को खत्म करने के लिए टास्क को विशिष्ट CPU कोर पर पिन करता है। यह रनटाइम नॉन-ब्लॉकिंग सिस्टम कॉल करने और कर्नल-यूज़र मोड मेमोरी कॉपीिंग को कम करने के लिए io_uring इंटरफ़ेस का लाभ उठाता है। यह साझा-मेमोरी बफ़र्स के माध्यम से डेटा ट्रांसफर को प्रबंधित करने के लिए एक उच्च-प्रदर्शन I/O ड्राइवर और ज़ीरो-कॉपी TCP स्ट्रीम रैपिंग का उपयोग करता है। यह प्रोजेक्ट CPU कोर एफिनिटी मैनेजमेंट, लो-लेटेंसी सिस्टम प्रोग्रामिंग और उच्च-प्रदर्शन नेटवर्किंग के लिए क्षमताएं प्रदान करता है। इसमें एक प्लगेबल I/O ड्राइवर बैकएंड और यूज़र व कर्नल स्पेस के बीच स्थिर बफ़र्स बनाए रखने के लिए मेमोरी लॉकिंग के लिए कॉन्फ़िगरेशन शामिल हैं।

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

    Rust
    GitHub पर देखें↗5,033
  • qihoo360/evppQihoo360 का अवतार

    Qihoo360/evpp

    3,767GitHub पर देखें↗

    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.