#125 - Polishing.

Upgrade to latest R2DBC versions. Reformat code.
This commit is contained in:
Mark Paluch
2019-10-01 10:24:08 +02:00
parent 5b2670ef6f
commit 03ad99540a
3 changed files with 37 additions and 41 deletions

View File

@@ -15,62 +15,62 @@
*/
package org.springframework.data.microbenchmark.r2dbc;
import io.r2dbc.spi.Row;
import java.util.function.Function;
import org.openjdk.jmh.annotations.Benchmark;
import org.openjdk.jmh.annotations.Param;
import org.openjdk.jmh.annotations.Setup;
import org.openjdk.jmh.infra.Blackhole;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.data.microbenchmark.common.AbstractMicrobenchmark;
import org.springframework.data.r2dbc.core.DatabaseClient;
import io.r2dbc.spi.Row;
/**
* Benchmark for R2DBC and Spring Data R2DBC
*
*
* @author Oliver Drotbohm
*/
public class R2dbcBenchmark extends AbstractMicrobenchmark {
private static final String FIND_ALL_SQL = "SELECT id, title, pages FROM Book";
private static final String BY_TITLE_SQL = FIND_ALL_SQL + " where title = :title";
@Param({ /* "postgres", */ "h2-in-memory" /*, "h2" */ })
String profile;
@Param({ /* "postgres", */ "h2-in-memory" /*, "h2" */ }) String profile;
private DatabaseClient operations;
private Function<Row, Book> mapper;
private R2dbcBookRepository repository;
@Setup
public void setUp() {
R2dbcFixture fixture = new R2dbcFixture(profile);
ConfigurableApplicationContext context = fixture.getContext();
this.operations = context.getBean(DatabaseClient.class);
this.mapper = row -> new Book(row.get("id", Long.class), row.get("title", String.class), row.get("pages", Integer.class));
this.mapper = row -> new Book(row.get("id", Long.class), row.get("title", String.class),
row.get("pages", Integer.class));
this.repository = context.getBean(R2dbcBookRepository.class);
}
@Benchmark
public void findByTitle(Blackhole sink) {
sink.consume(operations.execute(BY_TITLE_SQL) //
.bind("title", "title0") //
.map(mapper)
.one() //
.map(mapper).one() //
.block());
}
@Benchmark
public void findAll(Blackhole sink) {
sink.consume(operations.execute(FIND_ALL_SQL) //
.map(mapper) //
.all() //
@@ -82,7 +82,7 @@ public class R2dbcBenchmark extends AbstractMicrobenchmark {
public void repositoryFindByTitle(Blackhole sink) {
sink.consume(repository.findByTitle("title0").block());
}
@Benchmark
public void repositoryFindTransactionalByTitle(Blackhole sink) {
sink.consume(repository.findTransactionalByTitle("title0").block());
@@ -92,14 +92,4 @@ public class R2dbcBenchmark extends AbstractMicrobenchmark {
public void repositoryFindAll(Blackhole sink) {
sink.consume(repository.findAll().collectList().block());
}
public static void main(String[] args) {
new R2dbcFixture("postgres") //
.getContext() //
.getBean(R2dbcBookRepository.class) //
.findAll() //
.collectList() //
.block();
}
}