当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
12 Star 29 Fork 4

letsfire/redigo
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
options.go 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
letsfire 提交于 2020-03-11 16:55 . 优化使用
package redigo
import (
"github.com/gomodule/redigo/redis"
"time"
)
// PoolOption 连接池配置函数
type PoolOption func(pool *redis.Pool)
// Wait 连接池枯竭是是否阻塞等待
func Wait(value bool) PoolOption {
return func(pool *redis.Pool) {
pool.Wait = value
}
}
// MaxIdle 最多允许空闲的连接数
func MaxIdle(value int) PoolOption {
return func(pool *redis.Pool) {
pool.MaxIdle = value
}
}
// MaxActive 最多允许的连接数, 0 则无限制
func MaxActive(value int) PoolOption {
return func(pool *redis.Pool) {
pool.MaxActive = value
}
}
// IdleTimeout 最大空闲时长, 超过后关闭连接
func IdleTimeout(value time.Duration) PoolOption {
return func(pool *redis.Pool) {
pool.IdleTimeout = value
}
}
// MaxConnLifetime 连接生命周期, 超过后关闭连接
func MaxConnLifetime(value time.Duration) PoolOption {
return func(pool *redis.Pool) {
pool.MaxConnLifetime = value
}
}
// TestOnBorrow 健康检查, 检测连接是否可用
func TestOnBorrow(value func(c redis.Conn, t time.Time) (err error)) PoolOption {
return func(pool *redis.Pool) {
pool.TestOnBorrow = value
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/letsfire/redigo.git
git@gitee.com:letsfire/redigo.git
letsfire
redigo
redigo
master

搜索帮助