# ioGame示例 **Repository Path**: mr-black0/example-iogame ## Basic Information - **Project Name**: ioGame示例 - **Description**: ioGame 网络游戏服务器框架示例集合 - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 66 - **Created**: 2022-07-05 - **Last Updated**: 2022-07-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 这个仓库用于存放 ioGame 相关的使用示例

ioGame

国内首个基于蚂蚁金服 SOFABolt 的 java 网络游戏服务器框架;无锁异步化、事件驱动的架构设计;
通过 ioGame 可以很容易的搭建出一个集群无中心节点、分步式的网络游戏服务器!
轻量级、更节约、更简单、开箱即用、无配置文件、启动快、超高性能
业务框架平均每秒可以执行 1152 万次业务逻辑
对webMVC开发者友好
代码即文档

https://www.yuque.com/iohao/game

JDK 17
Apache 2
gitee star github star



过去、现在、将来都不会有商业版本,所有功能全部开源! 只做真的完全式开源,拒绝虚假开源,售卖商业版,不搞短暂维护! 承诺项目的维护周期是十年起步, 2022-03-01起,至少十年维护期! 提供高质量的使用文档! 如果您觉得还不错,帮忙给个 start 关注!
## 源码目录介绍 ```text . ├── example (示例) │ ├── example-broadcast (广播示例) │ ├── example-cluster-run-one (集群示例) │ ├── example-endpoint 示例目录 玩家动态绑定逻辑服节点 │ ├── example-for-spring (spring集成示例) │ ├── example-for-tcp-socket (对外服使用tcp协议示例) │ ├── example-hook 示例目录 钩子相关(心跳,用户上线、下线) │ ├── example-interaction (逻辑服与逻辑服之间的交互,可跨进程通信) │ ├── example-interaction-same 示例目录 逻辑服间的相互通信;请求同类型多个逻辑服的结果集(可跨进程) │ ├── example-parent │ ├── example-redisson-lock (分步式锁) │ ├── example-redisson-lock-spring-boot-starter (分步式锁 for springBootStarter) │ └── example-run-one (快速启动示例) └── example-game-collect (实战示例、坦克) ├── fxgl-tank (游戏引擎-坦克游戏启动端) ├── game-common (一些通用的功能) ├── game-common-proto (示例 pb ) ├── game-external (对外服) ├── game-logic-hall (登录逻辑服) ├── game-logic-tank (坦克逻辑服) └── game-one (一键启动 游戏网关、游戏逻辑服(登录和坦克)、对外服) ```