I have a project in which I am converting a large amount of .tif images into PDF documents. File count goes into millions. To speed up the process I am using Amphp. Since the process of converting the images with Imagemagick takes up some cpu power I want to limit the maximum amount of parallel running converter processes. My first
Tag: parallel-processing
Parallel processing in PHP – How do you do it?
I am currently trying to implement a job queue in php. The queue will then be processed as a batch job and should be able to process some jobs in parallel. I already did some research and found several ways to implement it, but I am not really aware of their advantages and disadvantages. E.g. doing the parallel processing by