Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 545 Bytes

README.adoc

File metadata and controls

41 lines (30 loc) · 545 Bytes

Reactive SQL Clients demos

Building

mvn clean package

Running

JDBC

cd jdbc
java -jar target/server-with-jdbc.jar

Reactive Pg Client

cd reactive-pg
java -jar target/server-with-reactive-pg.jar

Hibernate Reactive

cd hibernate-reactive
java -jar target/server-with-hibernate-reactive.jar

Counting Vert.x threads

jstack $(jps -l | grep 'server-with' | cut -d ' ' -f1) | grep 'vert' | wc -l