配置
├── Config 配置
│ ├── cache.php 缓存配置
│ ├── crypt.php 加解密配置
│ ├── global_data.php 共享缓存配置
│ ├── log.php 日志配置
│ ├── mysql.php 数据库配置
│ ├── protocol.php http/tcp/udp/websocket服务器配置
│ ├── router.php 路由配置
│ ├── rpc.php rpc配置
│ ├── session.php session 配置
├── config.php 加载配置
├── Controllers 控制器路径 (你也可以自定义支持prs4任意路径)
│ └── Handler.php
│ ├── Client.php 共享客户端
│ ├── Data.php 共享数据处理
│ └── Server.php 共享服务器
├── index.php 起始文件
├── Model 模型
│ └── User.php
├── public web root
│ └── index.php
php-fpm入口文件
├── RunCache 运行临时文件 需要读写权限
│ ├── cache
│ └── log
│ ├── AppHttpPort.php http监听
│ ├── AppHttpServer.php http服务
│ ├── AppTcpPort.php tcp监听
│ ├── AppWsServer.php websocket服务
│ ├── RpcHttpPort.php rpc http 监听
│ ├── RpcHttpServer.php rpc http服务
│ ├── RpcTcpPort.php rpc tcp 监听
│ ├── RpcTcpServer.php rpc tcp 服务
│ ├── RpcTrait.php
│ └── RpcWsServer.php rpc ws 服务
├── shell.php
shell入口文件
├── swoole.php 基于swoole起始文件
程序入口