ElasticSearch 学习笔记 2018-08-15 other 1853 words 4 mins read 安装 直接在 官网 下载可执行文件即可。 几个主要配置: ./config/elasticsearch.yml 1 2 3 4 cluster.name:elasticsearch // 集群名字,ES 会自动发现并加入同一网段下的指定名字的集群 path.data:/path/to/data //数据文件路径,默 Read more...
使用 Gnuplot 分析、呈现 Apache Ab 测试数据 2018-02-12 other 914 words 2 mins read 前几天用 Go 重写 PHP 接口时,顺便做了个性能对比,使用 Apache Ab 进行压力测试后,把相关数据使用 Gnuplot 生成图表。 Gnuplot 是一款开源的、功能强大的数据可视化处理软件, Read more...
基于实际业务场景的 PHP(Laravel) vs Go 性能测试 2018-02-11 other 5147 words 11 mins read 背景 最近用 Go 重写了之前用 PHP(Laravel) 写的一个较复杂的接口, 顺便作了个简单的性能测试对比。 目前网上很多性能对比只是简单的作一个 hello world 的对比, 基于实际业务的 Read more...
ffmpeg 使用方法 2017-12-15 other 619 words 2 mins read 可以使用 ffmpeg 方便的进行视频截取、视频格式转换、视频转gif动画等操作。 HUGOMORE42 基本格式 基本格式: 1 ffmpeg -i input.mp4 output.avi 常用参数 -i 指定输入文件 -f 指定输出格式 -ss 指定 Read more...
使用 delve 调试 Go 程序 2017-12-13 golang 225 words 1 min read 相比 GDB, delve 对 go 的支持更好,比如在创建有多个 goroutine 时,调试器不会出跳到其它 goroutine。 HUGOMORE42 安装 1 brew install go-delve/delve/delve 使用 通常使用 dlv run main.go 或 dlv exec ./main 的方式来 Read more...
常用 Linux 命令 2017-12-11 linux 560 words 2 mins read HUGOMORE42 find 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 # 找出七天前的文件 find / -type f -mtime +7 -print # / 表示从根目录中查找 # -type f 表示找出系统普通文件,不包含目录 # -mtime +n Read more...
批量转换文件编码 2017-12-08 linux 77 words 1 min read 1 2 3 4 5 6 7 8 9 10 11 12 #!/bin/bash DIR=$1 # 转换编码文件目录 FT=$2 # 待转换文件的扩展名 SE=$3 # 原始编码 DE=$4 # 目标编码 for file in `find $DIR -type f -name *.$FT`; do echo "conversion $file encoding $SE to $DE" iconv -f $SE -t $DE "$file" > Read more...
Let's Encrypt 2017-12-07 other 79 words 1 min read Let's Encrypt 生成的证书文件: cert.pem 服务端证书 chain.pem 浏览器需要的所有证书但不包括服务端证书,比如根证书和中间证书 fullchain.pem 包括了cert.pem和chain.pem的 Read more...
tcpdump 笔记 2017-12-06 linux 304 words 1 min read HUGOMORE42 tcpdump 是 UNIX 平台下的一款常用抓包工具。 基本介绍 常用参数: -n 直接显示IP端,而不是域名和服务名 -X 同时用 hex 和 ascii 显示报文的内容 -S 显示绝对的序列号(se Read more...
在 VS Code 中使用 Plantuml 画图 2017-12-05 other 2203 words 5 mins read 之前一直使用 Typora 这个 MarkDown 编辑器来画图, 只要在首选项中开启图表支持后就可以直接画 时序图、流程图 等图标了, 使用起来相当方便。 但有些更复杂的图表(如: Read more...