17 lines
243 B
Go
17 lines
243 B
Go
package cache
|
|
|
|
import (
|
|
"go_dreamfactory/pb"
|
|
|
|
"github.com/liwei1dao/lego/core"
|
|
)
|
|
|
|
const ( //Redis
|
|
Redis_UserCache core.Redis_Key = "user:%d" //会话列表
|
|
)
|
|
|
|
func (this *Cache) UpdateUser(data *pb.Cache_UserData) (err error) {
|
|
|
|
return
|
|
}
|