内容简介:HHVM 3.29.1 和 3.27.4 发布了,这两个版本均包含 Bugfix 和功能改进: 3.29.1 Fix reversed assignment when lambdas have multiple inout parameters This release is available for Ubuntu 18.10 Cosmic Signi...
HHVM 3.29.1 和 3.27.4 发布了,这两个版本均包含 Bugfix 和功能改进:
3.29.1
Fix reversed assignment when lambdas have multiple
inout
parametersThis release is available for Ubuntu 18.10 Cosmic
Significantly reduced lock contention when not running in repo-authoritative mode
Fix incorrect results for experimental HSL regex when combined with offset capture
Support building on systems where
$PATH
includes spaces
3.27.4
Fix reversed assignment when lambdas have multiple
inout
parametersSupport
stream_await()
on FDs when using CLI server (included in 3.29.0)stream_await()
will throw anInvalidOperationException
if called on an unawaitable file descriptor. This includes actual on-disk files on Linux, as they are not supported by epoll. We recommend that callers attempt tostream_await()
, and handle this exception if neccessary. The stream metadata can not be used to identify whether or not a stream is awaitable - for example,hhvm foo.php
has an awaitableSTDIN
, buthhvm foo.php < myfile
has an awaitableSTDIN
on MacOS (kqueue) but not on Linux (epoll). In prior releases, behavior varied; the most common result was writing an error toSTDOUT
, and the awaitable not resolving, with request timeout eventually being reached (included in 3.29.0)
开发团队表示,对最后一个 issue 的修复在技术上属于 BC break(破话了向后兼容性,backward compatibility),但还是将其引入了该版本中,不然项目会出现更大的问题。
下载地址:https://github.com/facebook/hhvm/releases
【声明】文章转载自:开源中国社区 [http://www.oschina.net]
以上所述就是小编给大家介绍的《HHVM 3.29.1 和 3.27.4 发布,Facebook 打造的 PHP 虚拟机》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- HHVM 3.29 发布,Facebook 打造的 PHP 虚拟机
- HHVM 3.29 发布,Facebook 打造的 PHP 虚拟机
- HHVM 3.30.3 发布,Facebook 打造的 PHP 虚拟机
- 用rust-vmm打造未来的虚拟化架构
- HHVM 4.3.0 发布,Facebook 打造的 PHP 虚拟机
- HHVM 4.3.0 发布,Facebook 打造的 PHP 虚拟机
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Perl最佳实践
康韦 / Taiwan公司 / 东南大学出版社 / 2008-3 / 78.00元
《Perl最佳实践》中所有的规则都是为了写出清晰、健壮、高效、可维护和简洁的程序而设计。Conway博士并不自诩这些规则是最广泛和最清晰的实践集,但实际上,《Perl最佳实践》确实提供了在实践中被广泛认可和应用的建议,而不是象牙塔似的编程理论。许多程序员凭直觉来编程,这些直觉来自于他们早期养成的习惯和风格。这样写出的程序似乎自然、直观,而且看起来也很不错。但是,如果你想严肃地对待程序员这份职业,那......一起来看看 《Perl最佳实践》 这本书的介绍吧!