cache package
This package implements common caching replacement algorithm like:
- LRU (least recently used)
- NUR (not recently used)
- FIFO (first in, first out)
- Timeout (each object has a timeout)
The following class diagramm gives an overview of the top caching classes:
Implementation
Map-Cache
The class diagramm shows the map cache classes in the util
package:
List-Cache
The class diagramm shows the list cache classes in the util
package: