From 9c1b96cf199cc789ec869f70e7bbda5f9ca6e75a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 12 Nov 2025 21:24:51 +0000 Subject: [PATCH] action: wiki sync --- Configuring-Suwayomi‐Server.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Configuring-Suwayomi‐Server.md b/Configuring-Suwayomi‐Server.md index d5a1690..66238f1 100644 --- a/Configuring-Suwayomi‐Server.md +++ b/Configuring-Suwayomi‐Server.md @@ -245,11 +245,13 @@ server.databaseType = H2 # H2, POSTGRESQL server.databaseUrl = "postgresql://localhost:5432/suwayomi" server.databaseUsername = "" server.databasePassword = "" +server.useHikariConnectionPool = true ``` - `server.databaseType` chooses which type of database to use. [H2](https://en.wikipedia.org/wiki/H2_Database_Engine) is the default; it is a simple file-based database for Java applications. Since it is only based on files without a server process, file corruption can be common when the server is not shut down properly. [PostgreSQL](https://en.wikipedia.org/wiki/PostgreSQL) is a popular cross-platform, stable database. To use PostgreSQL, you need to run an instance yourself. - `server.databaseUrl` the URL where to find the PostgreSQL server, including the database name. - `server.databaseUsername` the username with which to authenticate at the PostgreSQL instance. - `server.databasePassword` the username with which to authenticate at the PostgreSQL instance. +- `server.useHikariConnectionPool` use Hikari Connection Pool to connect to the database. **Note:** The example [docker-compose.yml file](https://github.com/Suwayomi/Suwayomi-Server-docker/blob/main/docker-compose.yml) contains everything you need to get started with Suwayomi+PostgreSQL. Please be aware that PostgreSQL support is currently still in beta.