Multithreading in MySQL? -


are mysql operations multithreaded?

specifically, on running select, select (or join) algorithm spawn multiple threads run together? being multi-threaded prevent being able support lot of concurrent users?

several background threads run in mysql server. also, each database connection served single thread. parallel queries (selects using multiple threads) not implemented in mysql.

mysql can support "a lot of concurrent useres". example facebook started mysql.


Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -

PostgreSQL 9.x - pg_read_binary_file & inserting files into bytea -