gin+redis
Posted 离地最远的星
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gin+redis相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
我想用gin开发一个使用redis和数据库的系统。 我应该如何进行架构设计?
Go语言实战 (12) Docker 部署 Gin+MySQL+Redis 项目