SyncCacheApi or AsyncCacheApi.@Deprecated public interface CacheApi
| Modifier and Type | Method and Description |
|---|---|
<T> T |
get(String key)
Deprecated.
Retrieves an object by key.
|
<T> T |
getOrElse(String key,
Callable<T> block)
Deprecated.
Retrieve a value from the cache, or set it from a default Callable function.
|
<T> T |
getOrElse(String key,
Callable<T> block,
int expiration)
Deprecated.
Retrieve a value from the cache, or set it from a default Callable function.
|
void |
remove(String key)
Deprecated.
Removes a value from the cache.
|
void |
set(String key,
Object value)
Deprecated.
Sets a value without expiration.
|
void |
set(String key,
Object value,
int expiration)
Deprecated.
Sets a value with expiration.
|
<T> T get(String key)
T - the type of the stored objectkey - the key to look up<T> T getOrElse(String key, Callable<T> block, int expiration)
T - the type of the valuekey - Item key.block - block returning value to set if key does not existexpiration - expiration period in seconds.<T> T getOrElse(String key, Callable<T> block)
T - the type of the valuekey - Item key.block - block returning value to set if key does not existvoid set(String key, Object value, int expiration)
key - Item key.value - The value to set.expiration - expiration in secondsvoid set(String key, Object value)
key - Item key.value - The value to set.void remove(String key)
key - The key to remove the value for.