Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tsegismont/reactive-sql-demos
- Owner: tsegismont
- License: apache-2.0
- Created: 2022-06-16T08:37:09.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-11T07:24:31.000Z (over 1 year ago)
- Last Synced: 2024-11-01T04:26:35.041Z (about 2 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
----