Is it apache and mysql multithreaded applications?

I was wondering if the default apache and mysql settings on windows / linux are multithreaded or not?

+4
source share
3 answers

It depends on how you look at it. MYSQL allows you to run multiple threads at the same time (this applies to available CPU / RAM resources), but this will not allow you to run a single query using multiple threads.

Apache is multithreaded, this is the only way the web application server can respond to multiple requests from different clients.

+2
source

Yes. Servers must be able to deal with many connections simultaneously. Everything should be in asynchronous threads.

+1
source

Yes, Apache and MySQL are multi-threaded. By the way, they run as a single process on the server.

+1
source

All Articles