Provides the Cache interface and its main implementations.
The picture below shows the UML class diagram of this package:
Package UML Class Diagram
The basic usage of this package is fairly simple. If we want an
in-memory cache
of a certain class Data, keyed with
String identifiers, we declare it as:
Cache<String, Data> cache = new SoftCache<String, Data>(); ...