put method
void
put(
- K key,
- V value
Implementation
void put(K key, V value) {
_map[key] = value;
doAutoPurge();
_expireCache();
}
void put(K key, V value) {
_map[key] = value;
doAutoPurge();
_expireCache();
}