This commit is contained in:
zuohuaijun 2025-04-16 21:05:26 +08:00
commit 995be02d17

View File

@ -403,7 +403,7 @@ public class SysCacheService : IDynamicApiController, ISingleton
return keys.Select(k => _cacheProvider.Cache.Get<T>(k)).ToList();
}
// <summary>
/// <summary>
/// 批量获取哈希缓存字段值(哈希结构)🔖
/// </summary>
/// <typeparam name="T">值类型</typeparam>
@ -637,6 +637,7 @@ public class SysCacheService : IDynamicApiController, ISingleton
{
_cacheProvider.Cache.SetExpire(key, expiry.Value);
}
await Task.CompletedTask;
return true;
}