https://github.com/tsegismont/reactive-sql-demos
Demos for Reactive SQL presentation
https://github.com/tsegismont/reactive-sql-demos
Last synced: 3 months ago
JSON representation
Demos for Reactive SQL presentation
- Host: GitHub
- URL: https://github.com/tsegismont/reactive-sql-demos
- Owner: tsegismont
- License: apache-2.0
- Created: 2022-06-16T08:37:09.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T07:24:31.000Z (almost 2 years ago)
- Last Synced: 2025-02-12T15:55:49.919Z (5 months ago)
- Language: Java
- Size: 35.2 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
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
----