Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { Debug bool // 是否调试 Database *define.DatabaseConf // 数据库配置 Redis *RedisConf // 缓存配置文件 Logs *LogsConf // 日志配置 }
Config 配置文件
type RedisConf ¶
type RedisConf struct { Network string // 网络 Server string // 地址 Port int // 端口 Pass string // 密码 Dbname int // 库名 ConnectTimeout time.Duration // 连接超时时间 ReadTimeout time.Duration // 读取超时时间 WriteTimeout time.Duration // 写入超时时间 MaxOpenConn int // 设置最大连接数 ConnMaxIdleTime time.Duration // 空闲连接超时 MaxIdleConn int // 最大空闲连接数 Wait bool // 如果超过最大连接数是否等待 }
RedisConf Redis配置文件
Click to show internal directories.
Click to hide internal directories.