Uses of Interface
org.h2.util.Cache

Packages that use Cache
org.h2.store Storage abstractions, such as a file with a cache, or a class to convert values to a byte array and vice versa. 
org.h2.util Internal utility classes. 
 

Uses of Cache in org.h2.store
 

Methods in org.h2.store that return Cache
 Cache PageStore.getCache()
           
 

Uses of Cache in org.h2.util
 

Classes in org.h2.util that implement Cache
 class CacheLRU
          A cache implementation based on the last recently used (LRU) algorithm.
 

Methods in org.h2.util that return Cache
static Cache CacheLRU.getCache(CacheWriter writer, java.lang.String cacheType, int cacheSize)
          Create a cache of the given type and size.