mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
修复FIFOCache类使用StampedCache导致并发读的并发问题(issue#IBCIQG@Gitee)
This commit is contained in:
@@ -16,7 +16,7 @@ import java.util.LinkedHashMap;
|
||||
* @param <V> 值类型
|
||||
* @author Looly
|
||||
*/
|
||||
public class FIFOCache<K, V> extends StampedCache<K, V> {
|
||||
public class FIFOCache<K, V> extends ReentrantCache<K, V> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user