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
Post a Comment