-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSqlBenchmark.java
96 lines (75 loc) · 2.79 KB
/
SqlBenchmark.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package demo;
import java.util.Collection;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.Level;
import org.openjdk.jmh.annotations.Scope;
import org.openjdk.jmh.annotations.Setup;
import org.openjdk.jmh.annotations.State;
import org.openjdk.jmh.runner.Runner;
import org.openjdk.jmh.runner.RunnerException;
import org.openjdk.jmh.runner.options.Options;
import org.openjdk.jmh.runner.options.OptionsBuilder;
import org.openjdk.jmh.runner.options.TimeValue;
import org.springframework.boot.SpringApplication;
import org.springframework.context.ConfigurableApplicationContext;
import demo.domain.AuthorWithBooks;
import demo.service.AuthorQueries;
/**
* Created by nlabrot on 10/10/15.
*/
public class SqlBenchmark {
@State(Scope.Benchmark)
public static class BenchmarkSpringState {
private ConfigurableApplicationContext configurableApplicationContext;
private AuthorQueries authorQueries;
@Setup(Level.Trial)
public void init() {
configurableApplicationContext = SpringApplication.run(Application.class);
authorQueries = configurableApplicationContext.getBean(AuthorQueries.class);
}
public AuthorQueries getAuthorQueries() {
return authorQueries;
}
}
@Benchmark
public Object reference(BenchmarkSpringState state) {
return state.getAuthorQueries().reference();
}
@Benchmark
public Collection<AuthorWithBooks> findAuthorsWithBooksJooqStreamedGroupBy(BenchmarkSpringState state) {
return state.getAuthorQueries().findAuthorsWithBooksJooqStreamedGroupBy();
}
@Benchmark
public Collection<AuthorWithBooks> findAuthorsWithBooksJdbcStreamed(BenchmarkSpringState state) {
return state.getAuthorQueries().findAuthorsWithBooksJdbcStreamed();
}
@Benchmark
public Object findAuthorsWithBooksJooqOldFashionGroupBy(BenchmarkSpringState state) {
return state.getAuthorQueries().findAuthorsWithBooksJooqOldFashionGroupBy();
}
@Benchmark
public Collection<AuthorWithBooks> findAuthorsWithBooksJdbc(BenchmarkSpringState state) {
return state.getAuthorQueries().findAuthorsWithBooksJdbc();
}
@Benchmark
public Collection<AuthorWithBooks> findAuthorsWithBooksJooqIntoGroup(BenchmarkSpringState state) {
return state.getAuthorQueries().findAuthorsWithBooksJooqIntoGroup();
}
@Benchmark
public Collection<AuthorWithBooks> findAuthorsWithBooksLazyGroupBy(BenchmarkSpringState state) {
return state.getAuthorQueries().findAuthorsWithBooksJooqFetchLazyOldFashionGroupBy();
}
public static void main(String[] args) throws RunnerException {
Options opt = new OptionsBuilder()
.include(SqlBenchmark.class.getSimpleName())
.warmupIterations(3)
.warmupTime(TimeValue.seconds(3))
.measurementIterations(3)
.measurementTime(TimeValue.seconds(3))
.threads(1)
.jvmArgs("-Xmx1g")
.forks(1)
.build();
new Runner(opt).run();
}
}