Associates {@code value} with {@code key} in this cache. If the cache previously contained a value associated with {@code key}, the old value is replaced by {@code value}. <p>Prefer {@link #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