import java.util.Collections;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.data.redis.core.script.DefaultRedisScript;
import org.springframework.stereotype.Component;
@Component
public class RedisDistributedLock {
@Autowired
private StringRedisTemplate stringRedisTemplate;
/**
* <p>Title lock</p>
* <p>Description </p>
* @param requestId
* @param key
* @param expiresTime 过期时间,毫秒
* @return
*/
public boolean lock(String key, String requestId, int expiresTime) {
String lockScriptStr = "if redis.call('setnx',KEYS[1],ARGV[1]) == 1 then return redis.call('pexpire',KEYS[1],ARGV[2]) else return 0 end";
DefaultRedisScript<Long> longDefaultRedisScript = new DefaultRedisScript<>(lockScriptStr, Long.class);
Long result = stringRedisTemplate.execute(longDefaultRedisScript, Collections.singletonList(key), requestId,String.valueOf(expiresTime));
return result == 1;
}
/**
* <p>Title releaseLock</p>
* <p>Description </p>
* @param key
* @param requestId
* @return
*/
public boolean unlock(String key, String requestId) {
String unLockScriptStr = "if redis.call('get',KEYS[1]) == ARGV[1] then return redis.call('del',KEYS[1]) else return 0 end";
DefaultRedisScript<Long> longDefaultRedisScript = new DefaultRedisScript<>(unLockScriptStr, Long.class);
Long result = stringRedisTemplate.execute(longDefaultRedisScript, Collections.singletonList(key), requestId);
return result == 1;
}
}
spring boot集成redis实现分布式锁
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 前言 目前几乎很多大型网站及应用都是分布式部署的,分布式场景中的数据一致性问题一直是一个比较重要的话题。在很多场景...
- 昔日繁华的背后, 落幕, 告别了一段属于它曾经的辉煌。 拾起那片斑驳的瓦片, 还有散落一地的鹅卵石, 悄悄对着阳光...