A lightweight and efficient PHP package to manage asynchronous processes with a configurable process limit.
Install via Composer:
composer require agussuroyo/async
- Asynchronous process execution with
pcntl_fork
- Configurable maximum number of parallel processes
- Automatic CPU core detection for optimal performance
- Efficient child process management
use AgusSuroyo\Async\Async;
$async = new Async();
$async->run(function () {
sleep(2);
echo "Process 1 done\n";
});
$async->run(function () {
sleep(3);
echo "Process 2 done\n";
});
$async->wait();
$async = new Async(2); // Limit to 2 concurrent processes
$async = new Async();
$async->max(4); // Adjust max processes at runtime
Run the tests using PHPUnit:
vendor/bin/phpunit
Contributions are welcome! Please submit a pull request or open an issue.
This package is open-source and available under the MIT License.