zoukankan      html  css  js  c++  java
  • Ehcache(2.9.x)

    About Explicit Locking

    Ehcache contains an implementation which provides for explicit locking, using read and write locks.

    With explicit locking, it is possible to get more control over Ehcache 's locking behavior to allow business logic to apply an atomic change with guaranteed ordering across one or more keys in one or more caches. It can therefore be used as a custom alternative to XA Transactions or Local transactions.

    With that power comes a caution. It is possible to create deadlocks in your own business logic using this API.

    Code Sample for Explicit Locking

    The following is a simple example that shows how to use explicit locking.

    String key = "123"; 
    Foo val = new Foo(); 
    cache.acquireWriteLockOnKey(key); 
    try { 
        cache.put(new Element(key, val)); 
    } finally { 
        cache.releaseWriteLockOnKey(key); 
    } 
    ...sometime later 
    String key = "123"; 
    cache.acquireWriteLockOnKey(key); 
    try { 
        Object cachedVal = cache.get(key).getValue(); 
        cachedVal.setSomething("abc"); 
        cache.put(new Element(key, cachedVal)); 
    } finally { 
        cache.releaseWriteLockOnKey(key); 
    }

    How Locking Works

    A READ lock does not prevent other READers from also acquiring a READ lock and reading. A READ lock cannot be obtained if there is an outstanding WRITE lock. It will queue.

    A WRITE lock cannot be obtained while there are outstanding READ locks. It will queue.

    In each case the lock should be released after use to avoid locking problems. The lock release should be in a “finally” block.

    If before each read you acquire a READ lock and then before each write you acquire a WRITE lock, then an isolation level akin to READ_COMMITTED is achieved.

    The Locking API

    The following methods are available on Cache and Ehcache.

    /** 
    * Acquires the proper read lock for a given cache key 
    * 
    * @param key - The key that retrieves a value that you want to protect via locking. 
    */ 
    public void acquireReadLockOnKey(Object key) { 
       this.acquireLockOnKey(key, LockType.READ); 
    } 
    /** * Acquires the proper write lock for a given cache key * * @param key - The key that retrieves a value that you want to protect via locking. */ public void acquireWriteLockOnKey(Object key) { this.acquireLockOnKey(key, LockType.WRITE); }
    /** * Try to get a read lock on a given key. If can't get it in timeout millis * then return a boolean telling that it didn't get the lock * * @param key - The key that retrieves a value that you want to protect via locking. * @param timeout - millis until giveup on getting the lock * @return whether the lock was awarded * @throws InterruptedException */ public boolean tryReadLockOnKey(Object key, long timeout) throws InterruptedException { Sync s = getLockForKey(key); return s.tryLock(LockType.READ, timeout); }
    /** * Try to get a write lock on a given key. If can't get it in timeout millis * then return a boolean telling that it didn't get the lock * * @param key - The key that retrieves a value that you want to protect via locking. * @param timeout - millis until giveup on getting the lock * @return whether the lock was awarded * @throws InterruptedException */ public boolean tryWriteLockOnKey(Object key, long timeout) throws InterruptedException { Sync s = getLockForKey(key); return s.tryLock(LockType.WRITE, timeout); }
    /** * Release a held read lock for the passed in key * * @param key - The key that retrieves a value that you want to protect via locking. */ public void releaseReadLockOnKey(Object key) { releaseLockOnKey(key, LockType.READ); }
    /** * Release a held write lock for the passed in key * * @param key - The key that retrieves a value that you want to protect via * locking. */ public void releaseWriteLockOnKey(Object key) { releaseLockOnKey(key, LockType.WRITE); }
    /** * Returns true if a read lock for the key is held by the current thread * * @param key * @return true if a read lock for the key is held by the current thread */ boolean isReadLockedByCurrentThread(Object key);
    /** * Returns true if a write lock for the key is held by the current thread * * @param key * @return true if a write lock for the key is held by the current thread */ boolean isWriteLockedByCurrentThread(Object key);

    Supported Topologies

    Except as noted in the The Locking API, the locking API supports the standalone and distributed cache topologies. It does not support the replicated topology.

  • 相关阅读:
    用 Go 实现一个 LRU cache
    【转】入行软件测试,零基础拿OFFER
    【转】IntelliJ idea 高效使用教程,一劳永逸!
    python连接Oracle报错DPI1047
    【转】Pycharm快捷键设置(鼠标滚动控制字体大小)
    【转】Ubuntu:命令行安装可视化界面
    【转】Windows 如何在cmd命令行中查看、修改、删除与添加环境变量
    VAR多变量预测
    windows进程管理
    git关闭filemode
  • 原文地址:https://www.cnblogs.com/huey/p/5837310.html
Copyright © 2011-2022 走看看