广告平台(站长使用)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

app_redis_key.go 383 B

1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
12345678910111213141516
  1. package md
  2. // 缓存key统一管理, %s格式化为masterId
  3. const (
  4. JwtTokenKey = "%s:advertisement_jwt_token:%s" // jwt, 占位符:ip, admin:id
  5. JwtTokenCacheTime = 3600 * 24
  6. AppCfgCacheKey = "%s:cfg_cache:%s" // 占位符: masterId, key的第一个字母
  7. AdminRolePermissionCacheTime = 3600 * 24 * 0.5
  8. KEY_SYS_CFG_CACHE = "sys_cfg_cache"
  9. CfgCacheTime = 86400
  10. )