Tony133 / nestjs-mysql

Mysql module for Nest framework (node.js) 😻
MIT License
13 stars 3 forks source link

fix: added connection pool #678

Closed Tony133 closed 2 months ago

Tony133 commented 2 months ago

Added connection pool

example configuration create a connection pool:

@Module({
  imports: [
    MysqlModule.forRoot({
        host: 'localhost',
        database: 'test2',
        password: 'root',
        user: 'root',
        port: 3306,  
        waitForConnections: true,
        connectionLimit: 10,
        queueLimit: 0,
        pool: true,
    }),
  ],
})