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 291 B

3 days ago
3 days ago
3 days ago
3 days ago
3 days ago
12345678
  1. package md
  2. // 缓存key统一管理
  3. const (
  4. AppCfgCacheKey = "egg_im_cfg_cache:%s" // 占位符: key的第一个字母
  5. AppUserPushForJgCacheKey = "egg_im_user_push_for_jg_cache:%s" // 占位符: key的第一个字母
  6. CfgCacheTime = 0.5 * 60 * 60
  7. )