- WebSocket服务
WebSocket服务
RapPHP已实现 一个可用的 websocket 服务配置
'websocket'=>['ip'=>'0.0.0.0','port'=>'9501','service'=>\app\ChatService::class,//集成自WebSocketService'secret'=>'1212', //设置密钥 当你集群里有多个容器时 相互之间访问靠的是这个密钥'worker_num'=>1,'coroutine'=>true//使用协程进行异步编程],
启动服务
php index.php websocket -host_name 容器名称
客户端连接ws://域名:9501?user_id=用户id&token=用户token(自定义 get 参数)
上一篇:Http服务器 下一篇:WebSocketService
