You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
- package redis
-
- import (
- redisdb "github.com/gomodule/redigo/redis"
- )
-
- //取值
- func GetConn() redisdb.Conn {
- if Pool == nil {
- Conn()
- }
- return Pool.Get()
- }
-
- func CloseConn(conn redisdb.Conn) error {
- return conn.Close()
- }
|