Update database limiting code more

pull/5/head
maru 2024-05-09 14:22:20 -04:00
parent de0bd74dc2
commit e4de7c2391
No known key found for this signature in database
GPG Key ID: 37689350E9CD0F0D
1 changed files with 8 additions and 7 deletions

View File

@ -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 {