Update database limiting code more

pull/11/head
maru 4 months ago
parent de0bd74dc2
commit e4de7c2391
No known key found for this signature in database
GPG Key ID: 37689350E9CD0F0D

@ -37,15 +37,16 @@ func Init(username, password, protocol, address, database string) error {
if err != nil {
return fmt.Errorf("failed to open database connection: %s", err)
}
if protocol == "unix" {
handle.SetMaxOpenConns(1000)
} else {
handle.SetMaxOpenConns(200)
conns := 1024
if protocol != "unix" {
conns = 256
}
handle.SetConnMaxIdleTime(time.Second * 30)
handle.SetConnMaxLifetime(time.Minute)
handle.SetMaxOpenConns(conns)
handle.SetMaxIdleConns(conns/4)
handle.SetConnMaxIdleTime(time.Second * 10)
tx, err := handle.Begin()
if err != nil {

Loading…
Cancel
Save