Redis实现分布式锁
分布式锁一般有三种实现方式:1、基于数据库乐观锁;2、基于Redis的分布式锁;3、基于Zookeeper的分布式锁。本文档主要介绍基于Redis实现分布式锁的方法。
1、加锁
// redis加锁
public boolean getLock(Jedis jedis,String key,int expire){
String uuid =UUID.randomUUID().toString();
String result = jedis.set(key,uuid,"NX","PX",expire);
}
参考:https://www.cnblogs.com/shenlei-blog/p/15597272.html
标签:基于,加锁,String,实现,redis,Redis,分布式 From: https://www.cnblogs.com/xianfengzhike/p/18220496