mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
Cache.put变更策略,对于替换的键值对,不清理队列
This commit is contained in:
parent
2d40dd1927
commit
bcc1d903f2
@ -92,13 +92,12 @@ public abstract class AbstractCache<K, V> implements Cache<K, V> {
|
||||
if (cacheMap.containsKey(mKey)) {
|
||||
// 存在相同key,覆盖之
|
||||
cacheMap.put(mKey, co);
|
||||
return;
|
||||
} else {
|
||||
if (isFull()) {
|
||||
pruneCache();
|
||||
}
|
||||
cacheMap.put(mKey, co);
|
||||
}
|
||||
|
||||
if (isFull()) {
|
||||
pruneCache();
|
||||
}
|
||||
cacheMap.put(mKey, co);
|
||||
}
|
||||
// ---------------------------------------------------------------- put end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user