package
Version:
v0.0.0-...-3d2f39d
Opens a new window with list of versions in this module.
Published: Nov 16, 2024
License: GPL-3.0
Opens a new window with license information.
Imports: 7
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
NewMySQLDB creates the mysql master/slaves cluster.
type Config struct {
Master Conn `yaml:"master"`
Slaves []Conn `yaml:"slaves"`
MaxOpenConns int `yaml:"max_open_conns"`
MaxIdleConns int `yaml:"max_idle_conns"`
LogLevel string `yaml:"log_level"`
}
Config defines mysql configuration.
type Conn struct {
Host string `yaml:"host"`
Port uint `yaml:"port"`
Username string `yaml:"username"`
Password string `yaml:"password"`
DBName string `yaml:"db_name"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.