Parallel¶
Running processes in parallel means that several distinct processes are running at the same time. This approach takes advantage of modern CPUs, which have several cores, and modern operating systems, with a robust process management.
PHP has several ways to start threads or processes, and monitor them: ampphp, reactPHP, fibers.
See also Parallel Processing with PHP: why, how, and when.
Related : Asynchronous