|
@@ -26,6 +26,11 @@ public class RedisCache {
|
|
|
@Autowired
|
|
|
public RedisTemplate redisTemplate;
|
|
|
|
|
|
+ /**
|
|
|
+ * 默认过期时长,单位:秒
|
|
|
+ */
|
|
|
+ public final static long DEFAULT_EXPIRE = 60 * 60 * 24;
|
|
|
+
|
|
|
/**
|
|
|
* 缓存基本的对象,Integer、String、实体类等
|
|
|
*
|
|
@@ -40,6 +45,8 @@ public class RedisCache {
|
|
|
boolean isOK = redisTemplate.opsForValue().setIfAbsent(key, value);
|
|
|
if (isOK) {
|
|
|
redisTemplate.opsForList().rightPush(RedisKey.LOCK_LIST + token, key);
|
|
|
+ expire(key, DEFAULT_EXPIRE);
|
|
|
+ expire(RedisKey.LOCK_LIST + token, DEFAULT_EXPIRE);
|
|
|
}
|
|
|
return isOK;
|
|
|
}
|
|
@@ -55,11 +62,15 @@ public class RedisCache {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public void unlockCacheObject(Long token,final String key) {
|
|
|
+ public void unlockCacheObject(Long token, final String key) {
|
|
|
redisTemplate.opsForList().remove(RedisKey.LOCK_LIST + token, 1, RedisKey.LOCK_LOCATION + key);
|
|
|
redisTemplate.delete(RedisKey.LOCK_LOCATION + key);
|
|
|
}
|
|
|
|
|
|
+ public void unlockCacheLocation(final String key) {
|
|
|
+ redisTemplate.delete(RedisKey.LOCK_LOCATION + key);
|
|
|
+ }
|
|
|
+
|
|
|
public boolean checkIsLock(String key) {
|
|
|
boolean isLock = false;
|
|
|
Object obj = redisTemplate.opsForValue().get(key);
|