打赏
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 54 下一页
摘要: SQL优化工具 (1.)小米公司的soar,下载二进制文件 https://github.com/XiaoMi/soar/releases (2.)使用说明: https://www.jianshu.com/p/1594228e18c6 (3.)安装Web图形化工具,下载地址: https://gi 阅读全文
posted @ 2020-07-02 08:47 苍山落暮 阅读(498) 评论(0) 推荐(0) 编辑
摘要: (1.)单元测试性能测试 https://github.com/guyan0319/golang_development_notes/blob/master/zh/1.9.md (2.)gotests使用 https://github.com/cweill/gotests (3.)Goland插件 阅读全文
posted @ 2020-07-02 08:45 苍山落暮 阅读(141) 评论(0) 推荐(0) 编辑
摘要: golang pprof使用 (1.)采用http的方式来采集pprof的性能分析数据。 // pprof 的init函数会将pprof里的一些handler注册到http.DefaultServeMux上 // 当不使用http.DefaultServeMux来提供http api时,可以查阅其i 阅读全文
posted @ 2020-07-01 11:31 苍山落暮 阅读(718) 评论(0) 推荐(0) 编辑
摘要: 前言 提到Go语言的并发,就不得不提goroutine,其作为Go语言的一大特色,在日常开发中使用很多。 在日常应用场景就会涉及一个goroutine启动或结束,启动一个goroutine很简单只需要在函数前面加关键词go即可,而由于每个goroutine都是独立运行的,其退出有自身决定的,除非ma 阅读全文
posted @ 2020-06-30 18:24 苍山落暮 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 1.chattr和lsattr使用 lsattr /etc/resolv.conf chattr +i /etc/resolv.conf #不能修改,不能删除 只读 lsattr /etc/resolv.conf #查看文件属性 chattr -i +a /etc/resolv.conf #只能追加 阅读全文
posted @ 2020-06-30 14:07 苍山落暮 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 1.安装mariadb数据库 apt install mariadb-server systemctl restart mariadb.service systemctl enable mariadb.service 2.进入mysql MariaDB [(none)]> show database 阅读全文
posted @ 2020-06-30 08:47 苍山落暮 阅读(238) 评论(0) 推荐(0) 编辑
摘要: goreporter 代码扫描 支持的特性: gofmt - Checks if the code is properly formatted and could not be further simplified. govet - Reports variables that may have b 阅读全文
posted @ 2020-06-19 11:45 苍山落暮 阅读(724) 评论(0) 推荐(0) 编辑
摘要: ### gitlab代码统计 ``` git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --pretty=tformat: --since ==201 阅读全文
posted @ 2020-06-16 17:23 苍山落暮 阅读(2568) 评论(0) 推荐(0) 编辑
摘要: mysql不同数据库 表结构同步 1.Navicat 工具/数据结构同步 https://blog.csdn.net/qq_31156277/article/details/80410120?utm_medium=distribute.pc_relevant_t0.none-task-blog-Bl 阅读全文
posted @ 2020-06-16 17:21 苍山落暮 阅读(1536) 评论(4) 推荐(1) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2020-06-14 01:10 苍山落暮 阅读(5) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 54 下一页