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.

  • 相关阅读:
    Apache HttpClient 4.3.6 API
    java中double的四舍五入 BigDecimal
    Java--获取request中所有参数的方法
    request.getSession(true)和request.getSession(false)的区别
    jquery插件分页
    Qt 之模型/视图(自定义按钮)
    在QTableView中使用各种自定义委托
    tableview setData 设置数据(结构体对象)
    libcurl 使用
    qt MessageBOX 消息
  • 原文地址:https://www.cnblogs.com/huey/p/5837310.html
Copyright © 2011-2022 走看看