PHP code example of vielhuber / parallyzer

1. Go to this page and download the library: Download vielhuber/parallyzer library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

vielhuber / parallyzer example snippets



use vielhuber\parallyzer\parallyzer;
$p = new parallyzer();

$p->add('php test.php', 100); // adds the command "php test.php" in 100 parallel threads to the worker
$p->add('ls -s', 25); // adds the command "ls -s" in 25 parallel threads to the worker
$p->observe(1); // enables live observing with an update interval of 1 second
$p->log('logs'); // enables output logging in the folder "logs"
$p->run(); // runs the machinery