码迷,mamicode.com
首页 > 其他好文 > 详细

gin+redis

时间:2019-12-20 00:52:32      阅读:266      评论:0      收藏:0      [点我收藏+]

标签: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"))




gin+redis

标签:spl   display   let   tom   add   otto   splay   一个   ini   

原文地址:https://www.cnblogs.com/hualou/p/12071035.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!