Uses of Interface
net.dontdrinkandroot.cache.Cache

Packages that use Cache
net.dontdrinkandroot.cache   
net.dontdrinkandroot.cache.impl   
net.dontdrinkandroot.cache.impl.disk.file   
net.dontdrinkandroot.cache.impl.disk.indexed   
net.dontdrinkandroot.cache.impl.memory   
 

Uses of Cache in net.dontdrinkandroot.cache
 

Subinterfaces of Cache in net.dontdrinkandroot.cache
 interface CustomTtlCache<K,V>
          A Cache that permits storing entries with an individual time to live and an individual idle time.
 interface LruBufferedCache<K,V>
          A Buffered Cache that has a LruRecyclingExpungeStrategy for both persistent storage and buffer.
 interface LruCache<K,V>
          A Buffered Cache that uses a LruRecyclingExpungeStrategy.
 

Uses of Cache in net.dontdrinkandroot.cache.impl
 

Classes in net.dontdrinkandroot.cache.impl that implement Cache
 class AbstractCache<K,V>
           
 class AbstractMapBackedCache<K,V,M extends MetaData>
           
 class AbstractMapBackedCustomTtlCache<K,V,M extends MetaData>
           
 

Uses of Cache in net.dontdrinkandroot.cache.impl.disk.file
 

Classes in net.dontdrinkandroot.cache.impl.disk.file that implement Cache
 class FileCache
           
 

Uses of Cache in net.dontdrinkandroot.cache.impl.disk.indexed
 

Classes in net.dontdrinkandroot.cache.impl.disk.indexed that implement Cache
 class AbstractIndexedDiskCache<K extends Serializable,V extends Serializable>
           
 class BufferedSerializableIndexedDiskCache
          A SerializableIndexedDiskCache that buffers entries in memory on successful disk put and get operations.
 class ByteArrayIndexedDiskCache
           
 class LruBufferedSerializableIndexedDiskCache
          A BufferedSerializableIndexedDiskCache that uses a LruRecyclingExpungeStrategy for both disk and buffer.
 class SerializableIndexedDiskCache
           
 

Uses of Cache in net.dontdrinkandroot.cache.impl.memory
 

Classes in net.dontdrinkandroot.cache.impl.memory that implement Cache
 class MemoryCache<K,V>
           
 class NoopCache<K,V>
          A serializable cache that does not actually perform any caching operation.
 



Copyright © 2013 dontdrinkandroot. All Rights Reserved.