Package org.apache.solr.common.util
Interface Cache<K,V>
- 
- All Known Implementing Classes:
- MapBackedCache,- ObjectCache
 
 public interface Cache<K,V>
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidclear()default VcomputeIfAbsent(K key, Function<? super K,? extends V> mappingFunction)Vget(K key)Vput(K key, V val)Vremove(K key)
 
-