Uses of Interface
org.h2.util.Cache
-
Packages that use Cache Package Description org.h2.util Internal utility classes. -
-
Uses of Cache in org.h2.util
Classes in org.h2.util that implement Cache Modifier and Type Class Description class
CacheLRU
A cache implementation based on the last recently used (LRU) algorithm.(package private) class
CacheSecondLevel
Cache which wraps another cache (proxy pattern) and adds caching using map.class
CacheTQ
An alternative cache implementation.Fields in org.h2.util declared as Cache Modifier and Type Field Description private Cache
CacheSecondLevel. baseCache
private Cache
CacheTQ. fifo
private Cache
CacheTQ. lru
Methods in org.h2.util that return Cache Modifier and Type Method Description static Cache
CacheLRU. getCache(CacheWriter writer, java.lang.String cacheType, int cacheSize)
Create a cache of the given type and size.Constructors in org.h2.util with parameters of type Cache Constructor Description CacheSecondLevel(Cache cache, java.util.Map<java.lang.Integer,CacheObject> map)
-