public interface Cache
Note that this takes Strings for both key and value since it's not intended as a general cache solution, but is
something specific for the Cache
component which caches rendered output.
Modifier and Type | Method and Description |
---|---|
String |
get(String key)
Gets a value from the cache
|
void |
put(String key,
String value)
Stores a value in the cache
|
void |
put(String key,
String value,
int timeToLive)
Stores a value in the cache
|
void |
remove(String key)
Removes a value from the cache
|
String get(String key)
key
- the key under which a value was previously storedvoid put(String key, String value)
key
- the key under which a value is to be storedvalue
- the value that is to be storedvoid put(String key, String value, int timeToLive)
key
- the key under which a value is to be storedvalue
- the value that is to be storedtimeToLive
- the amount of time in seconds for which the cached value is valid from the time it's being added to the cache.
It's provider specific whether the cache implementation will actually remove (evict) the entry after this time has
elapsed or will only perform a check upon accessing the cache entry. Whatever method the implementation chooses; after
this time is elapsed a call to get(String)
should return null.void remove(String key)
key
- the key under which a value is to be stored