文章摘要:如何查看mysql数据库连接池 怎么查看数据库连接池
查看mysql数据库连接池的示例 打开mysql终端输入以下命令查看。 show full  […]
查看mysql数据库连接池的示例
打开mysql终端输入以下命令查看。
show full processlist;
show open tables where In_use > 0;
show processlist;
select * from information_schema.processlist where db = '数据库名称' and command != 'Sleep' and Time >1000