Cache.put变更策略,对于替换的键值对,不清理队列

This commit is contained in:
Looly 2024-06-18 11:37:32 +08:00
parent 2d40dd1927
commit bcc1d903f2

View File

@ -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