| ▲ | s_ting765 3 days ago | |||||||
At the risk of sounding out the obvious. PHP is limited to single threaded processes and has garbage collection. It's certainly not the fastest language one could use for handling multiple concurrent jobs. | ||||||||
| ▲ | m-a-r-c-e-l 3 days ago | parent | next [-] | |||||||
That's incorrect. PHP has concurrency included. On the other hand, in 99.99% of web applications you do not need self baked concurrency. Instead use a queue system which handles this. I've used this with 20 million background jobs per day without hassles, it scales very well horizontally und vertically. | ||||||||
| ▲ | rafark 3 days ago | parent | prev [-] | |||||||
They didn’t say it was the fastest. Just that the language per se is fast enough. | ||||||||
| ||||||||