如何查看MySQL当前并发的线程情况呢?一条SQL即可:

show status like 'Threads%';
show variables like '%max_connections%';

可以查看当前设置最大连接数[……]

阅读全文