All Projects → walkor → Gatewayworker

walkor / Gatewayworker

Licence: mit
Distributed realtime messaging framework based on workerman.

Projects that are alternatives of or similar to Gatewayworker

Web Msg Sender
Web message pusher written in PHP based on workerman.
Stars: ✭ 864 (+7.87%)
Mutual labels:  realtime-messaging, websocket
Cowboy
Small, fast, modern HTTP server for Erlang/OTP.
Stars: ✭ 6,533 (+715.61%)
Mutual labels:  websocket
Open Lambda
An open source serverless computing platform
Stars: ✭ 718 (-10.36%)
Mutual labels:  distributed-systems
Rust Crdt
a collection of well-tested, serializable CRDTs for Rust
Stars: ✭ 747 (-6.74%)
Mutual labels:  distributed-systems
Spring Boot Websocket Chat Demo
Spring Boot WebSocket Chat Demo with SockJS fallback and STOMP protocol
Stars: ✭ 726 (-9.36%)
Mutual labels:  websocket
Xray onekey
Xray 基于 Nginx 的 VLESS + XTLS 一键安装脚本
Stars: ✭ 7,012 (+775.41%)
Mutual labels:  websocket
Briefing
Secure direct video group chat
Stars: ✭ 710 (-11.36%)
Mutual labels:  websocket
Kingbus
A distributed MySQL binlog storage system built on Raft
Stars: ✭ 798 (-0.37%)
Mutual labels:  distributed-systems
Hemera
🔬 Writing reliable & fault-tolerant microservices in Node.js https://hemerajs.github.io/hemera/
Stars: ✭ 773 (-3.5%)
Mutual labels:  distributed-systems
Rust Full Stack
Rust projects here are easy to use. There are blog posts for them also.
Stars: ✭ 745 (-6.99%)
Mutual labels:  websocket
Kubernetes Gpu Guide
This guide should help fellow researchers and hobbyists to easily automate and accelerate there deep leaning training with their own Kubernetes GPU cluster.
Stars: ✭ 740 (-7.62%)
Mutual labels:  distributed-systems
Xingo
高性能golang网络库,游戏开发脚手架
Stars: ✭ 727 (-9.24%)
Mutual labels:  distributed-systems
Awesome Distributed Systems
A curated list to learn about distributed systems
Stars: ✭ 7,263 (+806.74%)
Mutual labels:  distributed-systems
Springboot Learning
🚕 spring boot学习案例,方便spring boot 初学者快速掌握相关知识
Stars: ✭ 724 (-9.61%)
Mutual labels:  websocket
Titanoboa
Titanoboa makes complex workflows easy. It is a low-code workflow orchestration platform for JVM - distributed, highly scalable and fault tolerant.
Stars: ✭ 787 (-1.75%)
Mutual labels:  distributed-systems
Talent Plan
open source training courses about distributed database and distributed systemes
Stars: ✭ 6,965 (+769.54%)
Mutual labels:  distributed-systems
Blinker Py
Blinker python library for hardware. Works with Raspberry Pi, Banan Pi, Linux devices
Stars: ✭ 680 (-15.11%)
Mutual labels:  websocket
Javaquarkbbs
基于Spring Boot实现的一个简易的Java社区
Stars: ✭ 755 (-5.74%)
Mutual labels:  websocket
Netcoreserver
Ultra fast and low latency asynchronous socket server & client C# .NET Core library with support TCP, SSL, UDP, HTTP, HTTPS, WebSocket protocols and 10K connections problem solution
Stars: ✭ 799 (-0.25%)
Mutual labels:  websocket
Lizardfs
LizardFS is an Open Source Distributed File System licensed under GPLv3.
Stars: ✭ 793 (-1%)
Mutual labels:  distributed-systems

GatewayWorker

GatewayWorker基于Workerman开发的一个项目框架,用于快速开发长连接应用,例如app推送服务端、即时IM服务端、游戏服务端、物联网、智能家居等等。

GatewayWorker使用经典的Gateway和Worker进程模型。Gateway进程负责维持客户端连接,并转发客户端的数据给Worker进程处理;Worker进程负责处理实际的业务逻辑,并将结果推送给对应的客户端。Gateway服务和Worker服务可以分开部署在不同的服务器上,实现分布式集群。

GatewayWorker提供非常方便的API,可以全局广播数据、可以向某个群体广播数据、也可以向某个特定客户端推送数据。配合Workerman的定时器,也可以定时推送数据。

快速开始

开发者可以从一个简单的demo开始(demo中包含了GatewayWorker内核,以及start_gateway.php start_business.php等启动入口文件)
点击这里下载demo
demo说明见源码readme。

手册

http://www.workerman.net/gatewaydoc/

安装内核

只安装GatewayWorker内核文件(不包含start_gateway.php start_businessworker.php等启动入口文件)

composer require workerman/gateway-worker

使用GatewayWorker开发的项目

tadpole

Live demo
Source code
workerman todpole

chat room

Live demo
Source code
workerman-chat

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].