max_connections:
show variables like '%max_connections%'; show status like 'max_used_connections';
Max_used_connections / max_connections * 100% = 200/1024 *100% ≈ 1% 设置方法 两种 1.set GLOBAL max_connections=1200;
2.修改my.conf配置文件
max_connections=1200
mysqlslap 为mysql自带的性能测试工具
使用命令:
mysqlslap.exe -a --concurrency=300,500 --number-of-queries 100000 -uroot -proot
其中concurrency表示链接并发数300,500表示分别使用300和500并发
number-of-queries表示查询次数 即10万个查询