Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tsegismont/reactive-sql-demos

Demos for Reactive SQL presentation
https://github.com/tsegismont/reactive-sql-demos

Last synced: 6 days ago
JSON representation

Demos for Reactive SQL presentation

Awesome Lists containing this project

README

        

= Reactive SQL Clients demos

== Building

[source,shell]
----
mvn clean package
----

== Running

=== JDBC

[source,shell]
----
cd jdbc
java -jar target/server-with-jdbc.jar
----

=== Reactive Pg Client

[source,shell]
----
cd reactive-pg
java -jar target/server-with-reactive-pg.jar
----

=== Hibernate Reactive

[source,shell]
----
cd hibernate-reactive
java -jar target/server-with-hibernate-reactive.jar
----

== Counting Vert.x threads

[source,shell]
----
jstack $(jps -l | grep 'server-with' | cut -d ' ' -f1) | grep 'vert' | wc -l
----