Download the PHP package mak/phing-foreach-parallel-task without Composer
On this page you can find all versions of the php package mak/phing-foreach-parallel-task. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download mak/phing-foreach-parallel-task
More information about mak/phing-foreach-parallel-task
Files in mak/phing-foreach-parallel-task
Package phing-foreach-parallel-task
Short Description phing task to run sub-tasks in a foreach-loop in separate, parallel processes
License MIT
Homepage https://github.com/mkrauser/phing-foreach-parallel-task
Informations about the package phing-foreach-parallel-task
ForeachParallel-Task for Phing
Maintainer Contact
Matthias Krauser mail: [email protected] twitter: @mat_krauser
Changelog
1.0.0 (2014-10-27)
- initial release
Documentation
The foreach-parallel-task for phing behaves exactly like the normal foreach-task. From the documentation of the foreach-task:
The foreach task iterates over a list, a list of filesets, or both. If both, list and filesets, are specified, the list will be evaluated first. Nested filesets are evaluated in the order they appear in the task.
The only difference is, that the iterations are not executed sequentially but parallel. It like a foreach-version of phing's ParallelTask.
This only works on *nix machines with pcntl-extension installed. If the requirements are not fullfilled, the foreach-parallel-task will behave like a regular foreach-task.
Installation
The suggested installation method is via composer:
Usage
-
Load the task in your phing build-file
- Call the task:
The syntax is exactly the same as the original task. The only difference is the optional
threadCount
-Attribute, to specify the maximum number of threads / processes to use. If not specified, the library will try to guess the best number.
Credits
This library task was heavily inspired by ParallelTask from Michiel Rook ([email protected]), which is part of the Phing-Core.