Associates value with key in this cache. If the cache previously contained a value associated with key, the old value is replaced by value. Prefer #get(Object, Callable) when using the conventional "if cached, return; otherwise create, cache and return" pa
(K key, V value)
| 124 | * @since 11.0 |
| 125 | */ |
| 126 | void put(K key, V value); |
| 127 | |
| 128 | /** |
| 129 | * Copies all of the mappings from the specified map to the cache. The effect of this call is |
no outgoing calls