2 dépôts
Directs incoming network packets to specific logic blocks based on message identifiers and metadata.
Distinct from Type-Based Message Routing: Focuses on routing network packets to handlers via IDs, whereas type-based routing usually refers to in-memory pub-sub.
Explore 2 awesome GitHub repositories matching software engineering & architecture · Handler-Based Routing. Refine with filters or upvote what's useful.
Cellnet is a Go networking framework designed for building distributed systems and peer-to-peer networks. It provides a multi-protocol transport layer that standardizes message exchange across TCP, UDP, and WebSockets, utilizing a binary message codec system to map message types to unique identifiers for network transmission. The framework is distinguished by its remote procedure call library, which enables the execution of functions on remote peers using synchronous or asynchronous request patterns. It further differentiates itself with an asynchronous event dispatcher that processes network
Implements a handler-based routing system that directs incoming packets to specific logic blocks using unique message IDs.
Zappa is a serverless Python framework and command-line tool used for packaging and deploying Python web applications to AWS Lambda. It functions as a serverless infrastructure automator that provisions API Gateways, IAM roles, and SSL certificates to run ASGI and WSGI applications as serverless functions. The tool distinguishes itself by providing a management CLI for executing remote administration scripts and management commands directly within the deployed environment. It includes specific mechanisms for serverless performance tuning, such as scheduling regular warm-up invocations to prev
Uses a single entry point function to dispatch incoming requests to specific application routes.