mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-03 19:47:14 +08:00
Set conns value to 128
This commit is contained in:
parent
568697bc1f
commit
4cc2d3431c
5
db/db.go
5
db/db.go
@ -36,10 +36,7 @@ func Init(username, password, protocol, address, database string) error {
|
|||||||
return fmt.Errorf("failed to open database connection: %s", err)
|
return fmt.Errorf("failed to open database connection: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
conns := 1024
|
conns := 128
|
||||||
if protocol != "unix" {
|
|
||||||
conns = 256
|
|
||||||
}
|
|
||||||
|
|
||||||
handle.SetMaxOpenConns(conns)
|
handle.SetMaxOpenConns(conns)
|
||||||
handle.SetMaxIdleConns(conns / 4)
|
handle.SetMaxIdleConns(conns / 4)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user