redisson公平锁与非公平原理

本文详细探讨了Redisson公平锁的加锁、解锁逻辑,包括尝试加锁、公平锁的核心数据结构和参数解析,以及公平锁解锁过程。同时提到了公平锁可能存在的ttl<0导致的死锁问题。对于非公平锁,简要说明了其加锁和解锁机制。
摘要由CSDN通过智能技术生成

加锁

 private void lock(long leaseTime, TimeUnit unit, boolean interruptibly) throws InterruptedException {
   
        long threadId = Thread.currentThread().getId();
        //1.尝试加锁,如果加锁成功直接返回
        Long ttl = tryAcquire(-1, leaseTime, unit, threadId);
        if (ttl == null) {
   
            return;
        }
		
		//2.订阅
        RFuture<RedissonLockEntry> future = subscribe(threadId);
        
        if (interruptibly) {
   
            commandExecutor.syncSubscriptionInterrupted(future);
        } else {
   
            commandExecutor.syncSubscription(future);
        }

		//3.循环并尝试加锁
        try {
   
            while (true) {
   
                ttl = tryAcquire(-1, leaseTime, unit, threadId);
                if (ttl == null) {
   
                    break;
                }

                if (ttl >= 0) {
   
                    try {
   
                        future.getNow().getLatch().tryAcquire(ttl, TimeUnit.MILLISECONDS);
                    } catch (InterruptedException e) {
   
                        if (interruptibly) {
   
                            throw e;
                        }
                        future.getNow(
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值