mirror of
https://github.com/strapi/strapi.git
synced 2025-08-31 04:03:50 +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: {
|
postgres: {
|
||||||
connection: {
|
connection: {
|
||||||
@ -46,6 +47,7 @@ module.exports = ({ env }) => {
|
|||||||
},
|
},
|
||||||
schema: env('DATABASE_SCHEMA', 'public'),
|
schema: env('DATABASE_SCHEMA', 'public'),
|
||||||
},
|
},
|
||||||
|
pool: { min: env.int('DATABASE_POOL_MIN', 2), max: env.int('DATABASE_POOL_MAX', 10) },
|
||||||
},
|
},
|
||||||
sqlite: {
|
sqlite: {
|
||||||
connection: {
|
connection: {
|
||||||
|
@ -24,6 +24,7 @@ export default = ({ env }) => {
|
|||||||
),
|
),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
pool: { min: env.int('DATABASE_POOL_MIN', 2), max: env.int('DATABASE_POOL_MAX', 10) },
|
||||||
},
|
},
|
||||||
postgres: {
|
postgres: {
|
||||||
connection: {
|
connection: {
|
||||||
@ -46,6 +47,7 @@ export default = ({ env }) => {
|
|||||||
},
|
},
|
||||||
schema: env('DATABASE_SCHEMA', 'public'),
|
schema: env('DATABASE_SCHEMA', 'public'),
|
||||||
},
|
},
|
||||||
|
pool: { min: env.int('DATABASE_POOL_MIN', 2), max: env.int('DATABASE_POOL_MAX', 10) },
|
||||||
},
|
},
|
||||||
sqlite: {
|
sqlite: {
|
||||||
connection: {
|
connection: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user