Insert an entry into the cache. @param key the key to insert @param value the value to insert
(K key, V value)
| 35 | * @param value the value to insert |
| 36 | */ |
| 37 | void put(K key, V value); |
| 38 | |
| 39 | /** |
| 40 | * Manually invalidate a key, clearing its entry from the cache. |
no outgoing calls