02 2021 档案
发表于 2021-02-18 18:47阅读:93评论:0推荐:0
摘要:1、首先安装库 安装pip install BeautifulSoup 安装pip install numpy 安装pip install matplotlib 2、爬取指定网页数据,然后使用numpy和pandas对数据进行处理,最后使用 matplotlib 进行显示 import reques
阅读全文 »
发表于 2021-02-18 15:06阅读:151评论:0推荐:0
摘要:其实压测监控有很多种方式,介绍下面两种 一、使用jmeter插件 PerfMon 进行监控 进入https://jmeter-plugins.org/get/下载插件管理器,复制到Jmeter文件夹的lib/ext路径下,重启Jmeter,在选项菜单会多出plugins-manager 然后打开插件
阅读全文 »
发表于 2021-02-04 10:36阅读:1873评论:0推荐:0
摘要:Mac 下编译 Linux 和 Windows 64位可执行程序 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build main.goCGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build main.go Linux
阅读全文 »