⛲Database Pooling
Behind the scenes, connections to relational databases are made using Knex. If you would like to use connection pooling when connecting to your database instead of creating a new connection for each statement, you may instruct Knex to do so:
Environment Variables
Name | Default | Possible values | Description |
---|---|---|---|
|
|
| Whether to enable database connection pooling. Pooling will only be enabled if the database supports pooling in Knex. |
|
| Any number | The minimum number of connections. |
|
| Any number | The maximum number of connections. |
Last updated