Package com.bumptech.glide.load.engine.cache

Interface Summary
DiskCache An interface for writing to and reading from a disk cache.
DiskCache.Writer An interface to actually write data to a key in the disk cache.
MemoryCache An interface for adding and removing resources from an in memory cache.
MemoryCache.ResourceRemovedListener An interface that will be called whenever a bitmap is removed from the cache.
 

Class Summary
DiskCacheAdapter A simple class that returns null for all gets and ignores all writes.
DiskLruCacheWrapper The default DiskCache implementation.
LruResourceCache An LRU in memory cache for Resources.
MemoryCacheAdapter A simple class that ignores all puts and returns null for all gets.
MemorySizeCalculator A calculator that tries to intelligently determine cache sizes for a given device based on some constants and the devices screen density, width, and height.
StringKey A Key that wraps a single String.