Package ru.tinkoff.kora.cache
Interface LoadableCache<K,V>
public interface LoadableCache<K,V>
Analog of Caffeine LoadableCache, require
CacheLoader associated-
Method Summary
-
Method Details
-
get
Resolve the given value for the given key.- Parameters:
key- The cache key- Returns:
- value associated with the key
-
get
-
getAsync
Resolve the given value for the given key.- Parameters:
key- The cache key- Returns:
- value associated with the key or
Mono.empty()if no value is specified
-
getAsync
-