mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 07:00:55 +00:00
remove mutex
This commit is contained in:
parent
b64e70e7df
commit
cb55009c8b
6
cache/redis.go
vendored
6
cache/redis.go
vendored
@ -3,7 +3,6 @@ package cache
|
||||
import (
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/beego/redigo/redis"
|
||||
@ -19,7 +18,6 @@ type RedisCache struct {
|
||||
p *redis.Pool // redis connection pool
|
||||
conninfo string
|
||||
key string
|
||||
mu sync.Mutex
|
||||
}
|
||||
|
||||
// create new redis cache with default collection name.
|
||||
@ -117,8 +115,6 @@ func (rc *RedisCache) StartAndGC(config string) error {
|
||||
|
||||
// connect to redis.
|
||||
func (rc *RedisCache) connectInit() {
|
||||
rc.mu.Lock()
|
||||
|
||||
// initialize a new pool
|
||||
rc.p = &redis.Pool{
|
||||
MaxIdle: 3,
|
||||
@ -131,8 +127,6 @@ func (rc *RedisCache) connectInit() {
|
||||
return c, nil
|
||||
},
|
||||
}
|
||||
|
||||
rc.mu.Unlock()
|
||||
}
|
||||
|
||||
func init() {
|
||||
|
Loading…
Reference in New Issue
Block a user