摘要:
git config --global credential.helper store 阅读全文
摘要:
grep processor /proc/cpuinfo |wc -l 4 表示4核 阅读全文
摘要:
lsof | grep deleted 看到有一个tail命令占用了这个5给G的文件,找到后哦直接kill -9 7792就o释放了。 阅读全文
摘要:
1个字节8位数整型:byte: 1个字节 8位sort: 2个字节 16位int: 4个字节 32位long: 8个字节 64位浮点型:float:4个字节 32 位double :8个字节 64位char类型:char:2个字节16位。Boolean 类型:boolean: (true or fa 阅读全文
摘要:
SET UNIQUE_CHECKS=0 SET AUTOCOMMIT=0 快速插入,试了下 100完毕 40秒。 插入后再 SET UNIQUE_CHECKS=1 SET AUTOCOMMIT=1 设置成1后数据会出来 阅读全文
摘要:
1.存储过程 插入表数据 循环 create procedure u_head_and_low_pro() BEGIN DECLARE i INT DEFAULT 0; WHILE i < 1000000 DO INSERT INTO tb_test(userName,useStatus)VALUE 阅读全文
摘要:
<!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="initial-scal 阅读全文
摘要:
ab -n 100[请求数] -c 10[并发数] http 阅读全文
摘要:
alter table t_schedule_detail add pbxh varchar(64) not null; 阅读全文
摘要:
1 看连接数 show processlist; 2、show variables like "max_connections"; 查看最大连接数,应该是与上面查询到的连接数相同,才会出现too many connections的情况 4、set GLOBAL max_connections=100 阅读全文