Class FifoCache
java.lang.Object
org.apache.ibatis.cache.decorators.FifoCache
- All Implemented Interfaces:
Cache
FIFO (first in, first out) cache decorator.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Clears this cache instance.private voidcycleKeyList(Object key) getId()intgetSize()Optional.voidremoveObject(Object key) As of 3.3.0 this method is only called during a rollback for any previous value that was missing in the cache.voidsetSize(int size) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.ibatis.cache.Cache
getReadWriteLock
-
Field Details
-
delegate
-
keyList
-
size
private int size
-
-
Constructor Details
-
FifoCache
-
-
Method Details
-
getId
-
getSize
public int getSize()Description copied from interface:CacheOptional. This method is not called by the core. -
setSize
public void setSize(int size) -
putObject
-
getObject
-
removeObject
Description copied from interface:CacheAs 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:
removeObjectin interfaceCache- Parameters:
key- The key- Returns:
- Not used
-
clear
public void clear()Description copied from interface:CacheClears this cache instance. -
cycleKeyList
-