mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-08-03 02:18:00 +08:00
20 lines
503 B
C#
20 lines
503 B
C#
using NetAdmin.Domain.Dto.Dependency;
|
|
using NetAdmin.Domain.Dto.Sys.Cache;
|
|
|
|
namespace NetAdmin.SysComponent.Application.Modules.Sys;
|
|
|
|
/// <summary>
|
|
/// 缓存模块
|
|
/// </summary>
|
|
public interface ICacheModule
|
|
{
|
|
/// <summary>
|
|
/// 缓存统计
|
|
/// </summary>
|
|
Task<CacheStatisticsRsp> CacheStatisticsAsync();
|
|
|
|
/// <summary>
|
|
/// 获取所有缓存项
|
|
/// </summary>
|
|
Task<PagedQueryRsp<GetAllEntriesRsp>> GetAllEntriesAsync(PagedQueryReq<GetAllEntriesReq> req);
|
|
} |