mirror of
https://github.com/strapi/strapi.git
synced 2025-08-30 11:45:48 +00:00
add connection pool settings
This commit is contained in:
parent
2ae198e690
commit
10aaea4d39
@ -24,6 +24,7 @@ module.exports = ({ env }) => {
|
||||
),
|
||||
},
|
||||
},
|
||||
pool: { min: env.int('DATABASE_POOL_MIN', 2), max: env.int('DATABASE_POOL_MAX', 10) },
|
||||
},
|
||||
postgres: {
|
||||
connection: {
|
||||
@ -46,6 +47,7 @@ module.exports = ({ env }) => {
|
||||
},
|
||||
schema: env('DATABASE_SCHEMA', 'public'),
|
||||
},
|
||||
pool: { min: env.int('DATABASE_POOL_MIN', 2), max: env.int('DATABASE_POOL_MAX', 10) },
|
||||
},
|
||||
sqlite: {
|
||||
connection: {
|
||||
|
@ -24,6 +24,7 @@ export default = ({ env }) => {
|
||||
),
|
||||
},
|
||||
},
|
||||
pool: { min: env.int('DATABASE_POOL_MIN', 2), max: env.int('DATABASE_POOL_MAX', 10) },
|
||||
},
|
||||
postgres: {
|
||||
connection: {
|
||||
@ -46,6 +47,7 @@ export default = ({ env }) => {
|
||||
},
|
||||
schema: env('DATABASE_SCHEMA', 'public'),
|
||||
},
|
||||
pool: { min: env.int('DATABASE_POOL_MIN', 2), max: env.int('DATABASE_POOL_MAX', 10) },
|
||||
},
|
||||
sqlite: {
|
||||
connection: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user