bchapuis commented on issue #775:
URL: 
https://github.com/apache/incubator-baremaps/issues/775#issuecomment-1712649247

   Just experimented with another alternative. The database can either be a 
string or a json object representing an hikari connection pool. This allows to 
set the maximum number of connections in the pool.
   
   The following values are allowed:
   
   ```
   {
       "database": 
"jdbc:postgresql://localhost:5432/baremaps?&user=baremaps&password=baremaps",
   }
   ```
   
   Or:
   
   ```
   {
       "database": {
           "jdbcUrl": 
"jdbc:postgresql://localhost:5432/baremaps?&user=baremaps&password=baremaps",
           "maximumPoolSize": 4,
       },
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to