连贯锁定 - 解锁使用

时间:2012-06-13 06:38:10

标签: java caching locking oracle-coherence

我有一个关于相干锁定解锁机制的测试样本,如下所示:

public class Test {


    public static void main(String[] args) throws InterruptedException, IOException, IllegalArgumentException, IllegalAccessException {

        Trt test=new Trt();
        test.lock();
        Thread a=new Thread(test);
        a.start();
    }

    public static class Trt implements Runnable{

        NamedCache cache=null;

        @Override
        public void run() {

            System.out.println(cache.unlock("asd"));


        }

        public void lock(){
            cache= CacheFactory.getCache(Globals.REGISTRY_CACHE_NAME);

            System.out.println(cache.lock("asd"));

        }

    }
}

结果是:

true
false

我期待的结果是:

true
true

但是情况是,我只有一个项目'test',我都在使用它,它只有一个缓存实例。因此缓存的所有者就是缓存实例。

为什么它无法关闭它并最终返回false

由于

阿里

1 个答案:

答案 0 :(得分:11)

来自Oracle Coherence Developer's Guide:

  

当锁定到位时,调用者(在同一个线程或同一个集群节点中,取决于 lease-granularity 配置)负责释放锁定。< / p>

默认情况下,Coherence使用线程所有权粒度,这可能是锁定未被释放的原因。

  

thread 的值意味着锁由获取它们的线程持有,并且只能由该线程释放。值成员表示锁由群集节点保存,并且在获取锁的群集节点上运行的任何线程都可以释放它。

有关详细信息,请参阅http://docs.oracle.com/cd/E24290_01/coh.371/e22837/api_transactionslocks.htm#BEIIEEBBhttp://docs.oracle.com/cd/E24290_01/coh.371/e22837/appendix_operational.htm#BAGJBCEF