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 à :
Parent
05e8106997
révision
ea2d7a7165
1 fichiers modifiés avec 4 ajouts et 2 suppressions
|
@ -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)
|
||||
|
|
Référencer dans un nouveau ticket