Quarkus Embedded Postgresql
An alternative to quarkus-jdbc-postgres that rather than instantiating a pgsql server, uses zonky embedded library, reducing memory footprint.
It is mainly oriented for single pod k8s deployments or integration testing.
Installation
If you want to use this extension, you need to add the io.quarkiverse.embedded.postgresql:quarkus-embedded-postgresql
extension to your build file.
For instance, with Maven, add the following dependency to your POM file:
<dependency>
<groupId>io.quarkiverse.embedded.postgresql</groupId>
<artifactId>quarkus-embedded-postgresql</artifactId>
</dependency>