mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 08:37:26 +08:00
!1315 fix: 已过期key,onRemove偶尔触发
Merge pull request !1315 from winlans/v5-dev
This commit is contained in:
commit
c41612d21d
@ -112,6 +112,7 @@ public abstract class ReentrantCache<K, V> extends AbstractCache<K, V> {
|
|||||||
if(null != co && co.isExpired()){
|
if(null != co && co.isExpired()){
|
||||||
//过期移除
|
//过期移除
|
||||||
removeWithoutLock(key);
|
removeWithoutLock(key);
|
||||||
|
onRemove(co.key, co.obj);
|
||||||
co = null;
|
co = null;
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
|
@ -4,13 +4,17 @@ import cn.hutool.cache.impl.TimedCache;
|
|||||||
import cn.hutool.core.date.DateUnit;
|
import cn.hutool.core.date.DateUnit;
|
||||||
import cn.hutool.core.thread.ThreadUtil;
|
import cn.hutool.core.thread.ThreadUtil;
|
||||||
import cn.hutool.core.util.RandomUtil;
|
import cn.hutool.core.util.RandomUtil;
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.*;
|
import static org.junit.jupiter.api.Assertions.*;
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
|
|
||||||
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 缓存测试用例
|
* 缓存测试用例
|
||||||
* @author Looly
|
|
||||||
*
|
*
|
||||||
|
* @author Looly
|
||||||
*/
|
*/
|
||||||
public class CacheTest {
|
public class CacheTest {
|
||||||
|
|
||||||
@ -121,4 +125,27 @@ public class CacheTest {
|
|||||||
//取消定时清理
|
//取消定时清理
|
||||||
timedCache.cancelPruneSchedule();
|
timedCache.cancelPruneSchedule();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* TimedCache的数据过期后不是每次都触发监听器onRemove,而是偶尔触发onRemove
|
||||||
|
* https://gitee.com/chinabugotech/hutool/issues/IBP752
|
||||||
|
*/
|
||||||
|
@Test
|
||||||
|
public void whenContainsKeyTimeout_shouldCallOnRemove() {
|
||||||
|
int timeout = 50;
|
||||||
|
final TimedCache<Integer, String> ALARM_CACHE = new TimedCache<>(timeout);
|
||||||
|
|
||||||
|
AtomicInteger counter = new AtomicInteger(0);
|
||||||
|
ALARM_CACHE.setListener((key, value) -> {
|
||||||
|
counter.incrementAndGet();
|
||||||
|
});
|
||||||
|
|
||||||
|
ALARM_CACHE.put(1, "value1");
|
||||||
|
|
||||||
|
ThreadUtil.sleep(100);
|
||||||
|
|
||||||
|
assertFalse(ALARM_CACHE.containsKey(1));
|
||||||
|
assertEquals(1, counter.get());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user