Update tcp-server.md (#5724)

Co-authored-by: 李铭昕 <715557344@qq.com>
This commit is contained in:
zingjie 2023-05-16 15:45:26 +08:00 committed by GitHub
parent df4015984e
commit fa03ed388f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 4 deletions

View File

@ -52,7 +52,7 @@
- [#5666](https://github.com/hyperf/hyperf/pull/5666) 将 `Packers``hyperf/utils` 分离到 `hyperf/codec` 中。
- [#5668](https://github.com/hyperf/hyperf/pull/5668) 将 `hyperf/support``hyperf/utils` 分离出来。
- [#5670](https://github.com/hyperf/hyperf/pull/5670) 将 `hyperf/code-parser``hyperf/utils` 分离出来。
- [#5671](https://github.com/hyperf/hyperf/pull/5671) 使用 `Hyperf\Coroutine\Channel\Pool` 代替`Hyperf\Utils\ChannelPool`。
- [#5671](https://github.com/hyperf/hyperf/pull/5671) 使用 `Hyperf\Coroutine\Channel\Pool` 代替 `Hyperf\Utils\ChannelPool`
- [#5674](https://github.com/hyperf/hyperf/pull/5674) 将 `Hyperf\Utils` 命名空间的类和方法,使用新组件进行替换。
# v3.0.17 - 2023-04-19

View File

@ -130,7 +130,7 @@
* [Phar 打包器](zh-cn/phar.md)
* [DAG](zh-cn/dag.md)
* [RPN - 逆波兰表示法](zh-cn/rpn.md)
* [Swagger文档](zh-cn/swagger.md)
* [Swagger 文档](zh-cn/swagger.md)
* 应用部署

View File

@ -2,7 +2,7 @@
hyperf/swagger 组件基于 zircote/swagger-php 进行封装
如需完整支持的注释列表,请查看[OpenApi\Annotations命名空间](https://github.com/zircote/swagger-php/blob/master/src/Annotations)或[文档网站](https://zircote.github.io/swagger-php/guide/annotations.html#arrays-and-objects)
如需完整支持的注释列表,请查看[OpenApi\Annotations 命名空间](https://github.com/zircote/swagger-php/blob/master/src/Annotations)或[文档网站](https://zircote.github.io/swagger-php/guide/annotations.html#arrays-and-objects)
## 安装
@ -29,7 +29,7 @@ php bin/hyperf.php vendor:publish hyperf/swagger
## 生成文档
如果配置了`auto_generate`,在框架初始化的事件中便会自动生成文档,无需再次调用
如果配置了 `auto_generate` ,在框架初始化的事件中便会自动生成文档,无需再次调用
```shell
php bin/hyperf.php gen:swagger
```

View File

@ -69,6 +69,11 @@ $ret = $client->recv(); // recv:Hello World.
## 使用 UDP 服务
> Docker 默认使用 TCP 协议来通信,如果你需要使用 UDP 协议,你需要通过配置 Docker 网络来实现。
```shell
docker run -p 9502:9502/udp <image-name>
```
### 创建 UdpServer 类
> 如果没有 OnPacketInterface 接口文件,则可以不实现此接口,运行结果与实现接口一致,只要保证配置正确即可。