Skip to content

Commit

Permalink
2024-12-03 08:59:22
Browse files Browse the repository at this point in the history
  • Loading branch information
yingzhuo committed Dec 3, 2024
1 parent a9e543e commit 487abd6
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,22 @@
import java.util.Timer;

/**
* 基于Redis的可重入分布式锁
* 基于Redis的可重入分布式锁 <br>
* <em>特色</em>
* <ul>
* <li>可重入</li>
* <li>实现了自动续期功能</li>
* </ul>
*
* @author 应卓
* @since 3.4.0
*/
public final class ReentrantLock implements Serializable {

/*
* 本工具没有在高并发下严格测试,作者只为了自学与教学。请谨慎在生产环境上使用。
*/

/**
* 加锁脚本
*/
Expand Down

0 comments on commit 487abd6

Please sign in to comment.