| Interface | Description |
|---|---|
| DiskUsage |
Declares how
FileCache will use disc space. |
| FileNameGenerator |
Generator for files to be used for caching.
|
| Class | Description |
|---|---|
| FileCache |
Cache that uses file for storing data. |
| LruDiskUsage |
DiskUsage that uses LRU (Least Recently Used) strategy to trim cache. |
| Md5FileNameGenerator |
Implementation of
FileNameGenerator that uses MD5 of url as file name |
| TotalCountLruDiskUsage |
DiskUsage that uses LRU (Least Recently Used) strategy and trims cache size to max files count if needed. |
| TotalSizeLruDiskUsage |
DiskUsage that uses LRU (Least Recently Used) strategy and trims cache size to max size if needed. |
| UnlimitedDiskUsage |
Unlimited version of
DiskUsage. |