https://github.com/f3ath/forkrunner
A simple library to run a process in multiple processes
https://github.com/f3ath/forkrunner
parallelism pcntl php php-library shared-memory
Last synced: 11 months ago
JSON representation
A simple library to run a process in multiple processes
- Host: GitHub
- URL: https://github.com/f3ath/forkrunner
- Owner: f3ath
- License: mit
- Created: 2014-02-25T00:41:01.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-10-03T20:16:43.000Z (over 8 years ago)
- Last Synced: 2025-01-01T19:28:01.670Z (about 1 year ago)
- Topics: parallelism, pcntl, php, php-library, shared-memory
- Language: PHP
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ForkRunner
A simple library to run a process in multiple processes
## Installation
Via composer:
`$ composer require "f3ath/forkrunner"`
## Usage
```php
run($func, $args); // [9, 16, 25]
```