In the big picture, I don't think was a large number or extensive outage. The reports I saw were of dozens of large sites impacted, nothing indicating large chunks of their network or widespread outages. Overall outage reports are about 5% of the size of the big outage in November.
I'm not...
It seems you're not a car guy (or many other hands on hobbies for that matter), or your idea of car guy is you can change spark plugs and oil.
Car manufacturers do not publish the books on the Internet that service technicians use. Why would they, when they license them to dealers and techs...
Why? Because AI is only as good as the data fed to it, and new issues, ideas, products, etc. can only be answered by humans who bring the new knowledge to the table. If a new model car comes out, and someone needs a repair procedure, how does AI know that?
Respectfully, those benchmarks are flawed with "hello world" tasks. You lose the application overhead on the CPU, which is where event driven models like php-fpm shine. As CPU overhead goes up, event driven response time scales better. That's why Nginx, Litespeed and even Apache php-fpm do...
This is completely wrong.
On light loads mod_php is faster, but unlike php-fpm, it scales terribly. Its loading PHP and libraries for every request. PHP fpm uses a process manager that allows it to handle many requests without the larger memory overhead of mod_php, by having PHP processes...