Cache增加get重载,可自定义超时时间

This commit is contained in:
Looly 2023-11-14 09:07:06 +08:00
parent 7c1fafce99
commit 5cf19ea460
4 changed files with 27 additions and 1 deletions

View File

@ -5,6 +5,7 @@
# 5.8.24(2023-11-14)
### 🐣新特性
* 【cache 】 Cache增加get重载可自定义超时时间issue#I8G0DL@Gitee
### 🐞Bug修复
* 【core 】 修复LocalDateTime#parseDate未判断空问题问题issue#I8FN7F@Gitee

View File

@ -92,6 +92,21 @@ public interface Cache<K, V> extends Iterable<V>, Serializable {
*/
V get(K key, boolean isUpdateLastAccess, Func0<V> supplier);
/**
* 从缓存中获得对象当对象不在缓存中或已经过期返回Func0回调产生的对象
* <p>
* 调用此方法时会检查上次调用时间如果与当前时间差值大于超时时间返回{@code null}否则返回值
* <p>
* 每次调用此方法会可选是否刷新最后访问时间{@code true}表示会重新计算超时时间
*
* @param key
* @param isUpdateLastAccess 是否更新最后访问时间即重新计算超时时间
* @param timeout 自定义超时时间
* @param supplier 如果不存在回调方法用于生产值对象
* @return 值对象
*/
V get(K key, boolean isUpdateLastAccess, long timeout, Func0<V> supplier);
/**
* 从缓存中获得对象当对象不在缓存中或已经过期返回{@code null}
* <p>

View File

@ -109,6 +109,11 @@ public abstract class AbstractCache<K, V> implements Cache<K, V> {
@Override
public V get(K key, boolean isUpdateLastAccess, Func0<V> supplier) {
return get(key, isUpdateLastAccess, this.timeout, supplier);
}
@Override
public V get(K key, boolean isUpdateLastAccess, long timeout, Func0<V> supplier) {
V v = get(key, isUpdateLastAccess);
if (null == v && null != supplier) {
//每个key单独获取一把锁降低锁的粒度提高并发能力see pr#1385@Github
@ -125,7 +130,7 @@ public abstract class AbstractCache<K, V> implements Cache<K, V> {
throw ExceptionUtil.wrapRuntime(e);
//throw new RuntimeException(e);
}
put(key, v, this.timeout);
put(key, v, timeout);
} else {
v = co.get(isUpdateLastAccess);
}

View File

@ -58,6 +58,11 @@ public class NoCache<K, V> implements Cache<K, V> {
@Override
public V get(K key, boolean isUpdateLastAccess, Func0<V> supplier) {
return get(key, isUpdateLastAccess, 0, supplier);
}
@Override
public V get(K key, boolean isUpdateLastAccess, long timeout, Func0<V> supplier) {
try {
return (null == supplier) ? null : supplier.call();
} catch (Exception e) {