1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-26 20:34:40 +01:00
Go to file
2017-03-16 17:11:49 -05:00
bin Update for async-interop merge and other Amp changes 2017-03-16 17:03:59 -05:00
example Update for async-interop merge and other Amp changes 2017-03-16 17:03:59 -05:00
lib Do not auto close sockets in child 2017-03-16 17:11:49 -05:00
test Update for async-interop merge and other Amp changes 2017-03-16 17:03:59 -05:00
.gitattributes examples -> example 2016-08-26 09:53:18 -05:00
.gitignore Add vagrant to gitignore 2015-08-02 19:45:44 -05:00
.travis.yml Add 7.1 to allowed failures 2016-08-23 16:55:44 -05:00
.valgrindrc Add helpful defaults for Valgrind 2015-08-27 12:33:19 -05:00
CHANGELOG.md Port to Amp 2016-08-18 11:04:48 -05:00
composer.json Update for async-interop merge and other Amp changes 2017-03-16 17:03:59 -05:00
CONTRIBUTING.md Port to Amp 2016-08-18 11:04:48 -05:00
LICENSE Update license 2015-09-14 21:28:25 -05:00
phpdoc.dist.xml Port to Amp 2016-08-18 11:04:48 -05:00
phpunit.xml.dist Update tests; code cleanup 2016-08-18 17:36:58 -05:00
README.md Rename to Parallel 2016-08-23 16:47:40 -05:00
Vagrantfile Update vagrant box for PHP 7 2016-01-23 10:50:56 -06:00

Parallel Processing for Amp

True parallel processing using native threading and multiprocessing for parallelizing code, without blocking.

This library is a component for Amp that provides native threading, multiprocessing, process synchronization, shared memory, and task workers. Like other Amp components, this library uses Coroutines built from Awaitables and Generators to make writing asynchronous code more like writing synchronous code.

This library provides a means of parallelizing code without littering your application with complicated lock checking and inter-process communication.

To be as flexible as possible, this library comes with a collection of non-blocking concurrency tools that can be used independently as needed, as well as an "opinionated" worker API that allows you to assign units of work to a pool of worker threads or processes.

Requirements
  • PHP 7 (no extensions required)
Suggested
  • pthreads extension: Best extension option for concurrency in PHP, but it requires PHP to be compiled with --enable-maintainer-zts to enable thread-safety.
  • pcntl extension: Enables forking concurrency method.
  • sysvmsg extension: Required for sharing memory between forks or processes.
Installation

The recommended way to install is with the Composer package manager. (See the Composer installation guide for information on installing and using Composer.)

Run the following command to use this package in your project:

composer require amphp/parallel

You can also manually edit composer.json to add this library as a project requirement.

// composer.json
{
    "require": {
        "amphp/parallel": "dev-master"
    }
}

Development and Contributing

Want to hack on the source? A Vagrant box is provided with the repository to give a common development environment for running concurrent threads and processes, and comes with a bunch of handy tools and scripts for testing and experimentation.

Starting up and logging into the virtual machine is as simple as

vagrant up && vagrant ssh

Once inside the VM, you can install PHP extensions with Pickle, switch versions with newphp VERSION, and test for memory leaks with Valgrind.