Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DbConf ¶
type DbConf struct { User string `json:"user"` // 用户 Password string `json:"password"` // 密码 Host string `json:"host"` // 主机地址 Port string `json:"port"` // 端口 Database string `json:"database"` // 数据库 Schema string `json:"schema"` // 多租户 Tabel string `json:"table"` // 表名 Charset string `json:"charset"` // 默认 UTF8 ParseTime bool `json:"parseTime"` // 默认 true MaxOpenConns int `json:"maxOpenConns"` // 最大连接数 默认 1 MaxIdleConns int `json:"maxIdleConns"` // 初始化连接数 默认 1 ConnMaxLifetime int `json:"connMaxLifetime"` // 存活时间 默认30s }
Click to show internal directories.
Click to hide internal directories.