6dreams / parallel-pool
Presents parallel functionality as pool
1.1.4
2019-12-13 10:39 UTC
Requires
- php: >=7.2
Requires (Dev)
- phpunit/phpunit: 8.2.2
README
Provides simmular pool interface in parallel as pthreads.
Usage
$pool = new Pool( __DIR__ . '/bootstrap_or_autoloader.php', 2, static function (ThreadConfigInterface $config) { echo $config->getId() . "\n"; } ); $pool->submit([]); $pool->submit([]); $pool->submit([]); $pool->submit([]); $pool->submit([]); while ($pool->collect()) { \usleep(0); }