Class SynchronizedCache

java.lang.Object
org.apache.ibatis.cache.decorators.SynchronizedCache
All Implemented Interfaces:
Cache

public class SynchronizedCache
extends Object
implements Cache
Author:
Clinton Begin
  • Constructor Details

    • SynchronizedCache

      public SynchronizedCache​(Cache delegate)
  • Method Details

    • getId

      public String getId()
      Specified by:
      getId in interface Cache
      Returns:
      The identifier of this cache
    • getSize

      public int getSize()
      Description copied from interface: Cache
      Optional. This method is not called by the core.
      Specified by:
      getSize in interface Cache
      Returns:
      The number of elements stored in the cache (not its capacity).
    • putObject

      public void putObject​(Object key, Object object)
      Specified by:
      putObject in interface Cache
      Parameters:
      key - Can be any object but usually it is a CacheKey
      object - The result of a select.
    • getObject

      public Object getObject​(Object key)
      Specified by:
      getObject in interface Cache
      Parameters:
      key - The key
      Returns:
      The object stored in the cache.
    • removeObject

      public Object removeObject​(Object key)
      Description copied from interface: Cache
      As of 3.3.0 this method is only called during a rollback for any previous value that was missing in the cache. This lets any blocking cache to release the lock that may have previously put on the key. A blocking cache puts a lock when a value is null and releases it when the value is back again. This way other threads will wait for the value to be available instead of hitting the database.
      Specified by:
      removeObject in interface Cache
      Parameters:
      key - The key
      Returns:
      Not used
    • clear

      public void clear()
      Description copied from interface: Cache
      Clears this cache instance.
      Specified by:
      clear in interface Cache
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals​(Object obj)
      Overrides:
      equals in class Object