Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vielhuber/parallyzer
⛓️ A poor mans php tool for running multiple, non-blocking (php-)scripts. ⛓️
https://github.com/vielhuber/parallyzer
parallel-computing php threads
Last synced: 19 days ago
JSON representation
⛓️ A poor mans php tool for running multiple, non-blocking (php-)scripts. ⛓️
- Host: GitHub
- URL: https://github.com/vielhuber/parallyzer
- Owner: vielhuber
- Created: 2019-06-26T22:45:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-15T12:40:59.000Z (over 5 years ago)
- Last Synced: 2024-04-25T13:20:50.444Z (8 months ago)
- Topics: parallel-computing, php, threads
- Language: PHP
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# ⛓️ parallyzer ⛓️
parallyzer is a poor mans php tool for running multiple, non-blocking (php-)scripts in separate cpu threads.
## features
- runs on linux and mac
- no extensions like [pthreads](https://www.php.net/manual/de/book.pthreads.php) required
- runs php scripts or any other commands
- watch the output in a definable interval
- supports file based output logging## installation
```bash
composer require vielhuber/parallyzer
``````php
require __DIR__ . '/vendor/autoload.php';
use vielhuber\parallyzer\parallyzer;
$p = new parallyzer();
```## usage
```php
$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
```