摘要:
1.查看最大连接数 show variables like '%max_connection%' 2.设置最大连接数 (1) set global max_connections=1000; 重新设置最大连接数 (2)直接修改MySql安装目录下的my.ini文件,里面直接修改 max_connec 阅读全文
摘要:
log4z.h: /* * Log4z License * * * Log4z is licensed under the terms of the MIT license reproduced below. * This means that Log4z is free software and 阅读全文
摘要:
1.auto的功能: auto 可以自动推理数据类型。 使用语法如下: #include<iostream> #include<typeinfo> using namespace std; int main() { //auto变量定义时必须初始化 auto x = 3; auto y{23}; / 阅读全文