Finagle is a distributed service mesh and fault-tolerant remote procedure call framework. It provides a protocol-agnostic network library that implements a consistent interface for different network standards, including HTTP and Thrift. The project distinguishes itself by integrating a fault tolerance library that prevents cascading failures through circuit breaking and timeout management. It also implements a distributed tracing system to track requests across network boundaries and visualize call graphs. The framework covers several core capability areas, including dynamic service discover
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
tarpc is a remote procedure call framework for Rust that generates server traits and client stubs for network communication. It provides an asynchronous service interface that allows remote functions to be called as if they were local asynchronous tasks. The framework utilizes a serialized transport layer to move request and response data via TCP sockets, Unix domain sockets, or in-process channels. It includes a request lifecycle interceptor for injecting custom logic to handle authorization, throttling, and load balancing, as well as a distributed request telemetry system that attaches dead
brpc is a high-performance C++ RPC framework and network programming library designed for building distributed systems. It functions as a multi-protocol RPC server capable of hosting and detecting multiple communication protocols, including gRPC, Thrift, HTTP, Redis, and Memcached, on a single TCP port. The project distinguishes itself through high-throughput data transport and memory efficiency, utilizing RDMA-based transport to bypass the kernel TCP stack and zero-copy memory management to eliminate data duplication. It also implements the Raft algorithm for consensus-based state replicatio
Snowflake es un framework RPC de alta concurrencia y servicio de generación de ID distribuido. Proporciona la infraestructura para crear identificadores únicos y ordenados por tiempo a través de una red de servidores y facilita el desarrollo de servicios de red diseñados para manejar volúmenes masivos de solicitudes simultáneas.
Las características principales de twitter/snowflake son: Snowflake ID Generators, Distributed ID Generators, High-Concurrency Networking, Protocol-Agnostic Transport Layers, RPC Frameworks, Custom Protocol Implementations, Distributed Tracing, Runtime Process Profilers.
Las alternativas de código abierto para twitter/snowflake incluyen: twitter/finagle — Finagle is a distributed service mesh and fault-tolerant remote procedure call framework. It provides a… walkor/workerman — Workerman is an event-driven asynchronous socket framework for PHP. It provides the core components necessary to build… google/tarpc — tarpc is a remote procedure call framework for Rust that generates server traits and client stubs for network… apache/brpc — brpc is a high-performance C++ RPC framework and network programming library designed for building distributed… census-instrumentation/opencensus-go — OpenCensus-go is an observability instrumentation library designed to capture and export telemetry data from… yse/easy_profiler — Easy Profiler is a performance profiling library for C++ applications designed to measure execution duration and…