安静水杯

文章
5
资源
0
加入时间
3年0月8天

async-profiler性能分析工具

async-profiler性能分析工具可以对项目进行性能分析,可以追踪 CPU 周期,也可以追踪 Java 堆中的分配、锁争用,以及软件和硬件的性能计数器。环境准备async-profilercd /tmp // 你的项目目录git clone https://github.com/jvm-profiling-tools/async-profilercd async-profilermake运行./profiler.sh可以看到工具的使用命令$ ./profiler.shUsage:

centos7 搭建go环境

下载go#cd /home#mkdir app#cd app#wget https://storage.googleapis.com/golang/go1.9.linux-amd64.tar.gz# tar zxvf go1.9.linux-amd64.tar.gz新建GOPATH目录# mkdir /home/work# vim /etc/profileexport GO...

leetcode题库:6. Z字形变换

题目:/**题目:6. Z字形变换(题目地址:https://leetcode-cn.com/problems/zigzag-conversion/description/) * 将字符串 "PAYPALISHIRING" 以Z字形排列成给定的行数: * P   A   H   N * A P L S I I G * Y   I   R * 之后从左往右,逐行读取字符:"PAHNAPLSIIGYI...