perf: increase MAX_OVERFLOW of database connection pool.
Some checks are pending
sync2gitee / repo-sync (push) Waiting to run
Typos Check / Spell Check with Typos (push) Waiting to run

This commit is contained in:
liqiang-fit2cloud 2024-12-26 18:34:07 +08:00
parent 2033a3457f
commit 0459eedd1a

View File

@ -111,7 +111,7 @@ class Config(dict):
"ENGINE": self.get('DB_ENGINE'),
"POOL_OPTIONS": {
"POOL_SIZE": 20,
"MAX_OVERFLOW": 5
"MAX_OVERFLOW": 80
}
}