fiasco/async
Composer 安装命令:
composer require fiasco/async
包简介
PHP library for running asynchronous runtime php forks using pcntl.
README 文档
README
PHP library to execute tasks asynchronously.
This library allows you to hand off anonymous functions to execute in parallel through child forks using the PCNTL extension.
Return values of the anonymous functions are serialized and returned to the the parent fork to process.
Note: Objects that cannot be serialized are not supported as return values.
Note: As Exception objects can contain objects in their stack trace that cannot be serialized, it is not recommended use them as return values for the onSuccess callback function.
If you're wanting to run asynchronous activities like requests file operations or server interaction, consider ReactPHP instead (which this library relies upon).
Installation
Recommended installation method via composer.
composer require fiasco/async:^3.0
Usage
See examples.
Use the fork manager to create forks to execute in parallel.
<?php use Async\ForkManager; use Async\ForkInterface; use Async\Exception\ChildExceptionDetected; $forkManager = new ForkManager(); // Return an instance of ForkInterface. // Will be either a SynchronousFork or an AsynchronousFork if PCNTL extension // is enabled. $fork = $forkManager->create(); // This anonymous function will run inside a child fork. $fork->run(function (ForkInterface $fork) { return file_get_contents('https://google.com/'); }); // Return contents from run function will be provided as the input argument // to the onSuccess callback. This anonymous function is run in the parent thread. $fork->onSuccess(function ($html) { echo "Got website with a length of ".strlen($html)." bytes\n"; }); // On error is called when the child process encounters an uncaught throwable. $fork->onError(function (ChildExceptionDetected $e) { echo "ERROR: ".$e->getMessage().PHP_EOL; }); // Block on main thread until all forks have completed. $forkManager->awaitForks();
You can also chain calls together:
<?php use Async\ForkManager; use Async\ForkInterface; use Async\Exception\ChildExceptionDetected; $forkManager = new ForkManager(); $forkManager->create() ->run(function (ForkInterface $fork) { return file_get_contents('https://google.com/'); }) ->onSuccess(function ($html) { echo "Got website with a length of ".strlen($html)." bytes\n"; }) ->onError(function (ChildExceptionDetected $e) { echo "ERROR: ".$e->getMessage().PHP_EOL; }); // Block on main thread until all forks have completed. $forkManager->awaitForks();
If you prefer to work with the results in a foreach loop, you can use
ForkManager->getForkResults() to return the results. To include errors, pass
true as the first argument into the function.
<?php use Async\ForkManager; $forkManager = new ForkManager(); // Wait up to 3 seconds for fork response before giving up. $forkManager->setWaitTimeout(3); // This will result in a caught fatal error from the child. $forkManager->create()->run(fn() => @$foo->doNothing()); // This fork will catch a thrown exception and trigger the onError callback // in the parent thread. $forkManager->create()->run(function (ForkInterface $fork) { // You can set labels inside the fork to give better information about // what the specific fork is doing. $fork->setLabel("Fork that throws an error."); throw new \Exception('bar'); }); // Waiting for the fork in parent will timeout and force the fork // to error out. The Fork child will still attempt to return the // result but it will fail. $forkManager->create()->run(function (ForkInterface $fork) { $fork->setLabel("Fork that will timeout."); sleep(4); return 'fuz'; }); $forkManager->create()->run(fn() => 'baz'); $forkManager->awaitForks(); // Loop over errored forks. foreach ($forkManager->getForks(ForkInterface::STATUS_ERROR) as $fork) { // Result will be instance Async\Exception\ChildExceptionDetected. echo sprintf("Fork '%s' encountered an error:\n", $fork->getLabel()); // echo $fork->getResult()->getMessage() . PHP_EOL; } foreach ($forkManager->getForks(ForkInterface::STATUS_COMPLETE) as $fork) { // Result will be instance Async\Exception\ChildExceptionDetected. echo sprintf("Fork '%s' completed.\n", $fork->getLabel()); // echo $fork->getResult()->getMessage() . PHP_EOL; }
Alternative to the onError callback, you can also get all errored forks using the getForks() method.
<?php use Async\ForkInterface; // .. create forks. // Wait for all forks to complete. $forkManager->awaitForks(); // Loop over errored forks. foreach ($forkManager->getForks(ForkInterface::STATUS_ERROR) as $fork) { // Result will be instance Async\Exception\ChildExceptionDetected. echo sprintf("Fork '%s' encountered an error:\n", $fork->getLabel()); echo $fork->getResult()->getMessage() . PHP_EOL; }
fiasco/async 适用场景与选型建议
fiasco/async 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.08k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2020 年 05 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 fiasco/async 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 fiasco/async 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 8.08k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 19
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2020-05-22