Class LockingConfiguration

All Implemented Interfaces:
Matchable<LockingConfiguration>, Updatable<LockingConfiguration>

public class LockingConfiguration extends ConfigurationElement<LockingConfiguration>
Defines the local, in-VM locking and concurrency characteristics of the cache.
Author:
pmuir
  • Field Details

  • Method Details

    • 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.
    • 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 timeout)
    • 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.