What is the best PHP multithreading class? #multithreading
Edit
by stefanhorner - 9 years ago (2016-01-16)
How to implement threads in PHP
| I want to create threads in PHP. |
Ask clarification
2 Recommendations
This package can run parallel processes and manage their execution.
There is a base task class that applications should extend to defined the code that will be executed as a parallel process.
Then there fork manage and task manager classes that start added tasks as processes and manage their execution.
Separated classes can manage the memory and the time that each process can take to execute.
| by nvb package author 65 - 9 years ago (2016-02-29) Comment
This free as in freedom component easy up process forking and observing in php. It is using the memory limit manager as well as the time limit manager and the event dispatcher component as robust base. |
Multi-threading in PHP: Run emulated parallel threads with HTTP requests
This class can run emulated parallel threads with HTTP requests to the same server.
It can create parallel threads to run given PHP code by sending HTTP requests to an URL of the same server handled by a script that will execute a given function with optional arguments also passed in the HTTP request.
The class can also handle the HTTP requests to the emulated threads.
On the calling side, the class can check if the emulated thread has finished and retrieves the result as the HTTP response.
| by Manuel Lemos 26695 - 9 years ago (2016-01-19) Comment
If you want real threads you should use the pthreads extension. If this extension is not available in your PHP environment, you can use this class that emulates threads by sending HTTP requests to the same Web server, thus creating new instances of a script running in parallel. |