上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: git config --global credential.helper store 阅读全文
posted @ 2021-08-09 15:10 IT-Jack 阅读(48) 评论(0) 推荐(0) 编辑
摘要: grep processor /proc/cpuinfo |wc -l 4 表示4核 阅读全文
posted @ 2021-07-14 10:55 IT-Jack 阅读(9) 评论(0) 推荐(0) 编辑
摘要: lsof | grep deleted 看到有一个tail命令占用了这个5给G的文件,找到后哦直接kill -9 7792就o释放了。 阅读全文
posted @ 2021-05-24 11:06 IT-Jack 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2021-05-19 22:10 IT-Jack 阅读(27) 评论(0) 推荐(0) 编辑
摘要: SET UNIQUE_CHECKS=0 SET AUTOCOMMIT=0 快速插入,试了下 100完毕 40秒。 插入后再 SET UNIQUE_CHECKS=1 SET AUTOCOMMIT=1 设置成1后数据会出来 阅读全文
posted @ 2021-03-31 18:10 IT-Jack 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2021-03-31 17:38 IT-Jack 阅读(255) 评论(0) 推荐(0) 编辑
摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="initial-scal 阅读全文
posted @ 2021-03-01 18:27 IT-Jack 阅读(134) 评论(0) 推荐(0) 编辑
摘要: ab -n 100[请求数] -c 10[并发数] http 阅读全文
posted @ 2020-10-10 17:08 IT-Jack 阅读(56) 评论(0) 推荐(0) 编辑
摘要: alter table t_schedule_detail add pbxh varchar(64) not null; 阅读全文
posted @ 2020-09-22 09:55 IT-Jack 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1 看连接数 show processlist; 2、show variables like "max_connections"; 查看最大连接数,应该是与上面查询到的连接数相同,才会出现too many connections的情况 4、set GLOBAL max_connections=100 阅读全文
posted @ 2020-08-12 11:36 IT-Jack 阅读(2265) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页