上一页 1 2 3 4 5 6 7 8 ··· 46 下一页
摘要: 一、场景 在测试过程中,我们需要模拟一些参数,比如用户use01,user02......user100 二、方案 jmeter 三、编写测试脚本 1、创建测试计划 2、创建线程组 3、添加BeanShell Sampler 4、编写BeanShell脚本 List list = new Array 阅读全文
posted @ 2024-06-19 10:42 代码诠释的世界 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 一、场景 公司的云端平台需要进行性能测试,websocket接口存在有随业务增加而增加的性能场景,所以需要进行性能测试 二、方案 jmeter模拟并发量,模拟接口请求和获取 三、工具 jmeter及其插件 四、配置 1、添加线程组 2、添加 3、配置参数 4、添加监听器,查看结果树 五、测试 实际场 阅读全文
posted @ 2024-06-18 16:37 代码诠释的世界 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 一、场景 由于测试时需要抓包,所以安装下charles 二官网 https://www.charlesproxy.com/ https://www.charlesproxy.com/download/ 选择APT安装 三、安装步骤 检查安装结果 四、激活 激活最新版Charles激活码,适用于全部版 阅读全文
posted @ 2024-06-14 20:39 代码诠释的世界 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 一、问题 使用 sudo apt update 命令时,会提示密钥存储在过时的 trusted.gpg 密钥环中,具体提示内容如下:W: https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/dists/jammy/InRelease: 密钥存储在过时 阅读全文
posted @ 2024-06-14 20:31 代码诠释的世界 阅读(603) 评论(0) 推荐(1) 编辑
摘要: 一、官网 https://www.mongodb.com/zh-cn/docs/mongodb-shell/crud/ 二、简单介绍 1、基本概念 2、数据类型 三、常用shell操作 1、数据库操作 // 查看当前服务器上的数据库 show dbs; show databases; // 选择名为 阅读全文
posted @ 2024-06-14 20:26 代码诠释的世界 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 一、场景 测试过程需要增删改查查询MongoDB数据,并对比结果 二、官网 https://www.mongodb.com/try/download/shell 选择对应的系统和版本,下载即可 三、安装 sudo dpkg -i mongodb-mongosh_2.2.6_amd64.deb 检查安 阅读全文
posted @ 2024-06-14 15:49 代码诠释的世界 阅读(89) 评论(0) 推荐(0) 编辑
摘要: 一、场景 由于高并发测试,服务器资源不够用,所以需要使用jmeter分布式进行测试,但是测试过程中报错:java.rmi.ConnectException: Connection refused to host: 127.0.1.1; 二、问题原因 就是hostname -i 如果返回的是127.0 阅读全文
posted @ 2024-06-12 19:50 代码诠释的世界 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 一、场景 当我们拉取多个项目时,每次总要输入密码,http方式的时候 二、方法 git config --global credential.helper store 然后可以手动配置账号密码 配置~/.gitconfig文件 [user] name = test email = test@emai 阅读全文
posted @ 2024-06-12 19:45 代码诠释的世界 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 一、场景 验证redis哨兵模式主节点性能 二、工具 Redis benchmark 官网 Redis benchmark | Docs 三、命令介绍 四、使用 redis-benchmark -h 192.168.3.190 -p 26380 -a 123456 -n 100000 -c 20 P 阅读全文
posted @ 2024-06-12 19:23 代码诠释的世界 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 一、场景 由于redis data set支持的类型有限,所以采取使用beanshell sampler 二、安装jedis包 https://mvnrepository.com/artifact/redis.clients/jedis 三、添加BeanShell Sampler 添加脚本 impo 阅读全文
posted @ 2024-06-12 17:52 代码诠释的世界 阅读(12) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 46 下一页