package redis import ( "time" ) type ModelDataExpired struct { key string //主key keys map[string]struct{} //数据集合 expired time.Time //过期时间 }