PHP is slow, as an example we generate (somewhat complex pdf documents from a sourced html file), and it takes PHP multiple seconds to parse and generate the document. We since rewrote this in Go and now it runs in milliseconds.
This is pure CPU bound (the IO is only opening a file and not a bottleneck) and PHP is still very slow for anything more complex.
This is pure CPU bound (the IO is only opening a file and not a bottleneck) and PHP is still very slow for anything more complex.