天蝎泪

导航

2020年6月12日 #

记一次性能问题思考

摘要: 因为从业三年,还未真正接触过性能测试,面试被问到 TPS(每秒事务数)上不去的原因,百度答案以及找到参考 什么是tps呢? (transaction per second) 每秒事务数,指服务器在单位时间内(秒)可以处理的事务数量,一般以request/second为单位。 原因参考大神提供的有以下 阅读全文

posted @ 2020-06-12 13:50 天蝎泪 阅读(176) 评论(0) 推荐(0) 编辑

2020年6月10日 #

git-02-17

摘要: 第二天 注册一个自己的账户(依赖于大佬远程搭建好的服务器)http://git.istester.com/ 第三天 在自己本地新建代码仓库 mkdri -p ~/istester_git 拉取代码 Git clone git clone http://t.istester.com:3000/iste 阅读全文

posted @ 2020-06-10 17:36 天蝎泪 阅读(104) 评论(0) 推荐(0) 编辑

git-01

摘要: 摘自老徐的博客!http://istester.com/git/118.html 阅读全文

posted @ 2020-06-10 16:41 天蝎泪 阅读(95) 评论(0) 推荐(0) 编辑

mysql-15-21

摘要: 第十五天 删除istester表,id大于12的数据 delete from istester where id>12; 删除idoxu表,分数grade不及格(小于60分)的数据 delete from idoxu where grade <60; 第十六天 造数据,把istester表所有的数据 阅读全文

posted @ 2020-06-10 16:37 天蝎泪 阅读(71) 评论(0) 推荐(0) 编辑

mysql-08-14

摘要: 第八天 查找idoxu表,名称(c_name)包含“i”的数据 select * from idoxu where name like "%i%"; 查找istester表,id包含“1”的数据 select * from istester where id like "%1%"; 查找istest 阅读全文

posted @ 2020-06-10 16:08 天蝎泪 阅读(107) 评论(0) 推荐(0) 编辑

mysql-01-07

摘要: 第一天 如果存在先删除数据库 drop database if exists istester; 创建数据库istester create database if not istester; 查看数据库创建是否成功 show databases; 第二天 创建istester和idoxu表 crea 阅读全文

posted @ 2020-06-10 15:38 天蝎泪 阅读(93) 评论(0) 推荐(0) 编辑

linux-01-04(创建文件夹mkdir,进入目录命令cd,创建文件命令 echo cp vim touch等,批量创建文件操作)

摘要: 第一天 在/usr目录下,新建一个文件夹istest mkdir -p /usr/istest 在/etc目录下,新建一个文件夹 ido mkdir -p /etc/ido 在/usr/istest/目录下,新建三个文件夹 istest1,istest2,istest3 cd /usr/istest 阅读全文

posted @ 2020-06-10 11:37 天蝎泪 阅读(1017) 评论(0) 推荐(0) 编辑

linux-05(tar命令的使用)

摘要: 压缩/etc/test目录下文件为a.ini 为test.tar.gz tar -zcvf test.tar.gz a.ini 压缩多个文件 c.ini d.ini tar -zcvf test.tar.gz c.ini d.ini 压缩文件夹 istest/ tar -zcvf istest.ta 阅读全文

posted @ 2020-06-10 11:08 天蝎泪 阅读(198) 评论(0) 推荐(0) 编辑

linux-06(移动命令mv)

摘要: 进入/usr/test/a目录 移动文件夹2020,到/usr/istest目录 cd /usr/test/a && mv ./2020 /usr/istest 移动/etc/test目录下的文件a,到/usr/istest目录 mv /etc/test/a /usr/istest 当前目录a.ta 阅读全文

posted @ 2020-06-10 11:01 天蝎泪 阅读(178) 评论(0) 推荐(0) 编辑

linux-07(复制命令cp)

摘要: 复制当前目录文件到备份目录 cp 文件名 备份目录 复制文件夹到部署目录 cp -r 文件夹 目标目标 阅读全文

posted @ 2020-06-10 10:53 天蝎泪 阅读(150) 评论(0) 推荐(0) 编辑