maven
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>1.17.5</version>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>1.17.5</version>
<scope>provided</scope>
</dependency>
使用
@BenchmarkMode(Mode.Throughput)
@OutputTimeUnit(TimeUnit.MILLISECONDS)
@Warmup(iterations = 5, time = 3, timeUnit = TimeUnit.SECONDS)
@Measurement(iterations = 20, time = 3, timeUnit = TimeUnit.SECONDS)
@Fork(1)
@State(Scope.Benchmark)
public class DemoJmhTest {
private String pid;
@Setup
public void init() {
// prepare
}
@TearDown
public void destory() {
// destory
}
@Benchmark
public void benchPrecondition(){
try{
Preconditions.checkNotNull(pid);
}catch (Exception e){
}
}
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder()
.include(".*" +DemoJmhTest.class.getSimpleName()+ ".*")
.forks(1)
.build();
new Runner(opt).run();
}
}
BenchmarkMode类型
Mode.Throughput
在有时限的迭代里头,该方法能被调用多少次
Mode.AverageTime
方法平均执行时间
Mode.SampleTime
对方法执行时间进行采样计算
Mode.SingleShotTime
方法的单次调用时间/一次批处理的总调用时间
注意点
从@State对象读取测试输入并返回计算的结果,方便JMH对冗余代码进行消除;
如果是测试方法的性能,则避免通过在方法内循环(重复执行方法内原来代码),这样造成方法方法调用次数的减少,结果不准确,应该把循环调用放在方法外头。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。