LRUCache
public interface Cache<K,V>
void
clear()
java.util.Optional<V>
get(K key)
boolean
isEmpty()
put(K key, V value)
int
size()
boolean put(K key, V value)
java.util.Optional<V> get(K key)
int size()
boolean isEmpty()
void clear()