标签:spl display let tom add otto splay 一个 ini
var RedisDefaultPool *redis.Pool
func newPool(addr string) *redis.Pool {
return &redis.Pool{
MaxIdle: 3,
MaxActive: 0,
IdleTimeout: 240 * time.Second,
Dial: func() (conn redis.Conn, e error) {
return redis.Dial("tcp", addr)
},
}
}
func init() {
RedisDefaultPool = newPool("127.0.0.1:6379")
}
// 使用下面的方法从连接池返回一个连接
conn := RedisDefaultPool.Get()
ret, err := redis.String(conn.Do("get", "name"))
标签:spl display let tom add otto splay 一个 ini
原文地址:https://www.cnblogs.com/hualou/p/12071035.html