共计 1603 个字符,预计需要花费 5 分钟才能阅读完成。
v4.6.7 版本次要是一个 Bug 修复版本,没有向下不兼容改变。
此版本中修复了 Http\Response::end()
办法总是返回 true
的问题,同时批改了 output_buffer_size
的默认值
在之前的版本中 output_buffer_size
的默认值为 2M
,因为受到 output_buffer_size
的限度,如果在调用end
时,须要发送的内容大于这个限度则会响应失败,并抛出如下谬误:
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();
应用以上代码即可复现该谬误
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) (@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@46ab345) (@matyhtf)
正文完