mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-11-30 02:37:58 +08:00
parent
df4015984e
commit
fa03ed388f
@ -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
|
||||
|
@ -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)
|
||||
|
||||
* 应用部署
|
||||
|
||||
|
@ -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
|
||||
```
|
||||
|
@ -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 接口文件,则可以不实现此接口,运行结果与实现接口一致,只要保证配置正确即可。
|
||||
|
Loading…
Reference in New Issue
Block a user