1 Star 2 Fork 2

tym_hmm/redis-pool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
RedisBuilderInterface.go 921 Bytes
一键复制 编辑 原始数据 按行查看 历史
天蝎儿 提交于 2022-03-15 17:09 . init
package Redis
type RedisBuilderInterface interface {
//设置是否是集群模式 默认为false
SetCluster(isCluster bool) RedisBuilderInterface
GetCluster() bool
//设置ip 主要为ip:端口
SetHost(host string) RedisBuilderInterface
GetHost() string
//设置密码
SetPassword(password string) RedisBuilderInterface
GetPassword() string
//使用设置的数据库
SetDb(db int) RedisBuilderInterface
GetDb() int
//设置最大重试次数
SetMaxRetries(maxRetries int) RedisBuilderInterface
GetMaxRetries() int
//设置连接池大小
SetPoolSize(poolSize int) RedisBuilderInterface
GetPoolSize() int
//读超时
SetReadTimeOut(readTimeout int) RedisBuilderInterface
GetReadTimeOut() int
//连接池超时
SetPoolTimeOut(poolTimeout int) RedisBuilderInterface
GetPoolTimeOut() int
//建立连接超时
SetDialTimeout(dialTimeout int) RedisBuilderInterface
GetDialTimeOut() int
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/tym_hmm/redis-pool.git
[email protected]:tym_hmm/redis-pool.git
tym_hmm
redis-pool
redis-pool
master

搜索帮助