Merge pull request #4549 from mempool/nymkappa/increase-mysql-pool

[database] increase default pool size to 100 connections
This commit is contained in:
wiz
2024-03-06 16:19:53 +09:00
committed by GitHub
6 changed files with 11 additions and 4 deletions

View File

@@ -104,6 +104,7 @@ interface IConfig {
PASSWORD: string;
TIMEOUT: number;
PID_DIR: string;
POOL_SIZE: number;
};
SYSLOG: {
ENABLED: boolean;
@@ -242,6 +243,7 @@ const defaults: IConfig = {
'PASSWORD': 'mempool',
'TIMEOUT': 180000,
'PID_DIR': '',
'POOL_SIZE': 100,
},
'SYSLOG': {
'ENABLED': true,