优化连接数的配置

This commit is contained in:
白茶清欢 2022-06-05 19:07:25 +08:00
parent fa88e89c97
commit 988ccb1a39
2 changed files with 27 additions and 16 deletions

View File

@ -24,8 +24,17 @@ type DBConfig struct {
Username string `json:"username" yaml:"username"` // 账号 Username string `json:"username" yaml:"username"` // 账号
Password string `json:"password" yaml:"password"` // 密码 Password string `json:"password" yaml:"password"` // 密码
Charset string `json:"charset" yaml:"charset"` // 编码 Charset string `json:"charset" yaml:"charset"` // 编码
MaxOpenConnection int `json:"max_open_connection" yaml:"max_open_connection"` // 打开的最大连接数 Connection Connection `json:"connection" yaml:"connection"` // 连接数量配置
MaxIdleConnection int `json:"max_idle_connection" yaml:"max_idle_connection"` // 最大空闲连接数 }
// Connection 连接数配置
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 19:05 2022/6/5
type Connection struct {
MaxOpen int `json:"max_open" yaml:"max_open"` // 打开的最大连接数
MaxIdle int `json:"max_idle" yaml:"max_idle"` // 最大空闲连接数
} }
// LogConfig 日志配置 // LogConfig 日志配置

View File

@ -31,8 +31,10 @@ func init() {
Username: "root", Username: "root",
Password: "zhangdeman", Password: "zhangdeman",
Charset: "utf8mb4", Charset: "utf8mb4",
MaxOpenConnection: 100, Connection: Connection{
MaxIdleConnection: 100, MaxOpen: 100,
MaxIdle: 100,
},
} }
testDBClient, _ = NewDBClient(cfg, cfg, nil, nil, nil) testDBClient, _ = NewDBClient(cfg, cfg, nil, nil, nil)
} }