123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- package com.fdkankan.redis.constant;
- import java.util.concurrent.TimeUnit;
- public class RedisKey {
- /**
- * 过期时间:1分钟
- */
- public static final int EXPIRE_TIME_1_MINUTE = 60;
- /**
- * 过期时间:10分钟
- */
- public static final int EXPIRE_TIME_10_MINUTE = 10*60;
- /**
- * 过期时间:30分钟
- */
- public static final int EXPIRE_TIME_30_MINUTE = 30*60;
- /**
- * 过期时间:2小时
- */
- public static final int EXPIRE_TIME_2_HOUR = 2*60*60;
- /**
- * 用户过期时间
- */
- public static final int USER_EXPIRE_TIME = 6*60*60;
- /**
- * 相机登陆7天有效期
- */
- public static final int CAMERA_EXPIRE_7_TIME = 7*24*60*60;
- public static final String SYSTEM_PREFIX = "4dkankan";
- /**
- * 登录token
- */
- public static String TOKEN_USER = "token:type:%s:name:%s";
- /**
- * ssouser key
- */
- public static String SSO_USER = "sso_user:name:%s";
- /**
- * 开发者信息
- */
- public static String TM_DEVELOPER = "developer:appid:%s";
- /**
- * 场景浏览量
- */
- public static String SCENE_VISIT_CNT = "scene:visit:cnt:scenecode:%s";
- /**
- * 场景码池
- */
- public static String FDKANKAN_SCENE_NUMS = "4dkankan:scene:nums";
- public static final String SCENE_BUILDING = SYSTEM_PREFIX+":scene:building:";
- public static final String PREFIX_DOWNLOAD_PROGRESS="downloads:progress:";
- public static final String DOWNLOAD_TASK="downloads:task";
- /**
- * scenejson缓存
- */
- public static final String SCENE_JSON = "scenejson:num:%s";
- /**
- * 场景热点hash列表
- */
- public static final String SCENE_HOT_DATA = "scene:hotdata:num:%s";
- }
|