This commit is contained in:
aozhiwei 2024-04-07 12:00:31 +08:00
parent 6b74c7b9b4
commit 30d25d803f

View File

@ -3,7 +3,6 @@ package cache
import ( import (
"f5" "f5"
"q5" "q5"
"sync"
"fmt" "fmt"
"main/common" "main/common"
"main/constant" "main/constant"
@ -15,7 +14,6 @@ type pendingUser struct {
} }
type cacheMgr struct { type cacheMgr struct {
lock sync.Mutex
userHash map[string]*userProfile userHash map[string]*userProfile
pendingHash map[string]*pendingUser pendingHash map[string]*pendingUser
} }