mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 06:30:55 +00:00
Update memory.go
This commit is contained in:
parent
0333e26b3e
commit
9e036bcab5
6
cache/memory.go
vendored
6
cache/memory.go
vendored
@ -209,7 +209,11 @@ func (bc *MemoryCache) StartAndGC(config string) error {
|
||||
|
||||
// check expiration.
|
||||
func (bc *MemoryCache) vacuum() {
|
||||
if bc.Every < 1 {
|
||||
bc.RLock()
|
||||
every := bc.Every
|
||||
bc.RUnlock()
|
||||
|
||||
if every < 1 {
|
||||
return
|
||||
}
|
||||
for {
|
||||
|
Loading…
Reference in New Issue
Block a user