Infinispan Distribution 5.2.6.Final-redhat-2

org.infinispan.configuration.cache
Class LockingConfiguration

java.lang.Object
  extended by org.infinispan.configuration.cache.LockingConfiguration

public class LockingConfiguration
extends Object

Defines the local, in-VM locking and concurrency characteristics of the cache.

Author:
pmuir

Method Summary
 int concurrencyLevel()
          Concurrency level for lock containers.
 boolean equals(Object o)
           
 int hashCode()
           
 IsolationLevel isolationLevel()
          Cache isolation level.
 long lockAcquisitionTimeout()
          Maximum time to attempt a particular lock acquisition
 LockingConfiguration lockAcquisitionTimeout(long lockAcquisitionTimeout)
           
 boolean supportsConcurrentUpdates()
          This option applies to non-transactional caches only (both clustered and local): if set to true(default value) the cache keeps data consistent in the case of concurrent updates.
 String toString()
           
 boolean useLockStriping()
          If true, a pool of shared locks is maintained for all entries that need to be locked.
 boolean writeSkewCheck()
          This setting is only applicable in the case of REPEATABLE_READ.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Method Detail

concurrencyLevel

public int concurrencyLevel()
Concurrency level for lock containers. Adjust this value according to the number of concurrent threads interacting with Infinispan. Similar to the concurrencyLevel tuning parameter seen in the JDK's ConcurrentHashMap.


supportsConcurrentUpdates

public boolean supportsConcurrentUpdates()
This option applies to non-transactional caches only (both clustered and local): if set to true(default value) the cache keeps data consistent in the case of concurrent updates. For clustered caches this comes at the cost of an additional RPC, so if you don't expect your application to write data concurrently, disabling this flag increases performance.


isolationLevel

public IsolationLevel isolationLevel()
Cache isolation level. Infinispan only supports READ_COMMITTED or REPEATABLE_READ isolation levels. See http://en.wikipedia.org/wiki/Isolation_level for a discussion on isolation levels.


lockAcquisitionTimeout

public long lockAcquisitionTimeout()
Maximum time to attempt a particular lock acquisition


lockAcquisitionTimeout

public LockingConfiguration lockAcquisitionTimeout(long lockAcquisitionTimeout)

useLockStriping

public boolean useLockStriping()
If true, a pool of shared locks is maintained for all entries that need to be locked. Otherwise, a lock is created per entry in the cache. Lock striping helps control memory footprint but may reduce concurrency in the system.


writeSkewCheck

public boolean writeSkewCheck()
This setting is only applicable in the case of REPEATABLE_READ. When write skew check is set to false, if the writer at commit time discovers that the working entry and the underlying entry have different versions, the working entry will overwrite the underlying entry. If true, such version conflict - known as a write-skew - will throw an Exception.


toString

public String toString()
Overrides:
toString in class Object

equals

public boolean equals(Object o)
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object

Infinispan Distribution 5.2.6.Final-redhat-2

Copyright © 2013 JBoss, a division of Red Hat. All Rights Reserved.