Home
Download
Document
Forum
Video
Donate
Source Code
AI 助理
Sponsors
CRMEB
Apipost
腾讯云
微擎
禅道
51Talk
Products
Swoole AI 智能文档翻译器
Swoole-Compiler PHP 代码加密器
CRMEB 新零售社交电商系统
Login
Register
全部
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
发表新帖
Swoole v4.6.7 版本发布,Bug修复版本
[v4.6.7](https://github.com/swoole/swoole-src/releases/tag/v4.6.7) 版本主要是一个 Bug 修复版本,没有向下不兼容改动。 此版本中修复了修复`Http\Response::end()`方法总是返回 `true` 的问题,同时修改了 `output_buffer_size` 的默认值 在之前的版本中 `output_buffer_size` 的默认值为`2M`,由于受到 `output_buffer_size` 的限制,如果在调用`end`时,需要发送的内容大于这个限制则会响应失败,并抛出如下错误: ```php use Swoole\Http\Server; use Swoole\Http\Request; use Swoole\Http\Response; $http = new Server('127.0.0.1', 9501); $http->set([ 'http_compression' => false, 'buffer_output_size' => 128 * 1024, ]); $http->on('request', function (Request $request, Response $response) { assert($response->end(str_repeat('A', 256 * 1024)) === false); assert(swoole_last_error() === SWOOLE_ERROR_DATA_LENGTH_TOO_LARGE); }); $http->start(); ``` > 使用以上代码即可复现该错误 ```bash WARNING finish (ERRNO 1203): The length of data [262144] exceeds the output buffer size[131072], please use the sendfile, chunked transfer mode or adjust the output_buffer_size ``` 以前的解决方法为:使用 `sendfile`、`write` 或调整 `output_buffer_size`,而此版本中将`output_buffer_size`的默认值提高到了无符号 INT 最大值(`UINT_MAX`) 从 4.5 版本开始去掉了 Worker 进程共享内存的使用,改为了全部使用 `UnixSocket` 管道,所以不再需要预先分配内存。`output_buffer_size` 参数只是一个限制,设置为比较大的参数也不会导致额外占用内存。 同时还修复了`end`的返回值一直是`true`的问题,以上代码中产生错误后未成功响应,返回值为`false` ## 更新日志 下面是完整的更新日志: ### 增强 - Manager 进程和 Task 同步进程支持调用`Process::signal()`函数 (#4190) (@matyhtf) ### 修复 - 修复信号不能被重复注册的问题 (#4170) (@matyhtf) - 修复在 OpenBSD/NetBSD 上编译失败的问题 (#4188) (#4194) (@devnexen) - 修复监听可写事件时特殊情况 onClose 事件丢失 (#4204) (@matyhtf) - 修复 Symfony HttpClient 使用 native curl 的问题 (#4204) (@matyhtf) - 修复`Http\Response::end()`方法总是返回 true 的问题 ([swoole/swoole-src@66fcc35](https://github.com/swoole/swoole-src/commit/66fcc35)) (@matyhtf) - 修复 PDOStatementProxy 产生的 PDOException (swoole/library#104) (@twose) ### 内核 - 重构 worker buffer,给 event data 加上 msg id 标志 (#4163) (@matyhtf) - 修改 Request Entity Too Large 日志等级为 warning 级别 (#4175) (@sy-records) - 替换 inet_ntoa and inet_aton 函数 (#4199) (@remicollet) - 修改 output_buffer_size 默认值为 UINT_MAX ([swoole/swoole-src@66fcc35](https://github.com/swoole/swoole-src/commit/46ab345)) (@matyhtf) ![](https://cdn.jsdelivr.net/gh/sy-records/staticfile/images/swoole/wechat.png)
发布于3年前 · 12 次浏览 · 来自
分享
鲁飞
[v4.6.7](https://github.com/swoole/swoole-src/releases/tag/v4.6.7) 版本主要是一个 Bug 修复版本,没有向下不兼容改动。 此版本中修复了修复`Http\Response::end()`方法总是返回 `true` 的问题,同时修改了 `output_buffer_size` 的默认值 在之前的版本中 `output_buffer_size` 的默认值为`2M`,由于受到 `output_buffer_size` 的限制,如果在调用`end`时,需要发送的内容大于这个限制则会响应失败,并抛出如下错误: ```php use Swoole\Http\Server; use Swoole\Http\Request; use Swoole\Http\Response; $http = new Server('127.0.0.1', 9501); $http->set([ 'http_compression' => false, 'buffer_output_size' => 128 * 1024, ]); $http->on('request', function (Request $request, Response $response) { assert($response->end(str_repeat('A', 256 * 1024)) === false); assert(swoole_last_error() === SWOOLE_ERROR_DATA_LENGTH_TOO_LARGE); }); $http->start(); ``` > 使用以上代码即可复现该错误 ```bash WARNING finish (ERRNO 1203): The length of data [262144] exceeds the output buffer size[131072], please use the sendfile, chunked transfer mode or adjust the output_buffer_size ``` 以前的解决方法为:使用 `sendfile`、`write` 或调整 `output_buffer_size`,而此版本中将`output_buffer_size`的默认值提高到了无符号 INT 最大值(`UINT_MAX`) 从 4.5 版本开始去掉了 Worker 进程共享内存的使用,改为了全部使用 `UnixSocket` 管道,所以不再需要预先分配内存。`output_buffer_size` 参数只是一个限制,设置为比较大的参数也不会导致额外占用内存。 同时还修复了`end`的返回值一直是`true`的问题,以上代码中产生错误后未成功响应,返回值为`false` ## 更新日志 下面是完整的更新日志: ### 增强 - Manager 进程和 Task 同步进程支持调用`Process::signal()`函数 (#4190) (@matyhtf) ### 修复 - 修复信号不能被重复注册的问题 (#4170) (@matyhtf) - 修复在 OpenBSD/NetBSD 上编译失败的问题 (#4188) (#4194) (@devnexen) - 修复监听可写事件时特殊情况 onClose 事件丢失 (#4204) (@matyhtf) - 修复 Symfony HttpClient 使用 native curl 的问题 (#4204) (@matyhtf) - 修复`Http\Response::end()`方法总是返回 true 的问题 ([swoole/swoole-src@66fcc35](https://github.com/swoole/swoole-src/commit/66fcc35)) (@matyhtf) - 修复 PDOStatementProxy 产生的 PDOException (swoole/library#104) (@twose) ### 内核 - 重构 worker buffer,给 event data 加上 msg id 标志 (#4163) (@matyhtf) - 修改 Request Entity Too Large 日志等级为 warning 级别 (#4175) (@sy-records) - 替换 inet_ntoa and inet_aton 函数 (#4199) (@remicollet) - 修改 output_buffer_size 默认值为 UINT_MAX ([swoole/swoole-src@66fcc35](https://github.com/swoole/swoole-src/commit/46ab345)) (@matyhtf) ![](https://cdn.jsdelivr.net/gh/sy-records/staticfile/images/swoole/wechat.png)
赞
4
分享
收藏
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
评论
还没有评论!
微信公众号
热门内容
作者其它话题
- thinkphp5.1在使用think-swoole的时候报错unsupported option [host]
- WSL 下服务器响应数据过大无法接收
暂无回复的问答
- CodeGalaxy K3s 轻量集群节点之间如何实现负载均衡
- 关于openssl CURL WARNING swSSL_connect: SSL_connect(fd=69) failed. Error: error:141A318A:SSL routines:tls_process_ske_dhe:dh key too small[1|394]
- 多个模型如何进行事务异常回退?
- websocket开启wss报错
- 协程tcp服务器如何使用多进程?recv()方法接收信息,打印出来的pid一直是同一个。没用使用到多进程啊。