Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Activate the never-go-down-ever-again switch

Don't retain idle connections because they block everybody else.
Increase maximum number of connections to the db.
Cette révision appartient à :
tomleb 2017-05-26 14:51:54 -04:00
Parent 05e8106997
révision ea2d7a7165

Voir le fichier

@ -39,8 +39,10 @@ func GormInit(conf *config.Config, logger Logger) (*gorm.DB, error) {
log.CheckError(connectionErr)
return nil, connectionErr
}
db.DB().SetMaxIdleConns(10)
db.DB().SetMaxOpenConns(100)
// Negative MaxIdleConns means don't retain any idle connection
db.DB().SetMaxIdleConns(-1)
db.DB().SetMaxOpenConns(400)
if config.Environment == "DEVELOPMENT" {
db.LogMode(true)