123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using Microsoft.Extensions.Logging;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Reflection;
- using System.Threading.Tasks;
- using ZhonTai.Admin.Core.Attributes;
- using ZhonTai.Admin.Core.Configs;
- using ZhonTai.DynamicApi;
- using ZhonTai.DynamicApi.Attributes;
- using ZhonTai.Admin.Core.Consts;
- using ZhonTai.Common.Helpers;
- namespace ZhonTai.Admin.Services.Cache;
- /// <summary>
- /// 缓存服务
- /// </summary>
- [Order(80)]
- [DynamicApi(Area = AdminConsts.AreaName)]
- public class CacheService : BaseService, ICacheService, IDynamicApi
- {
- public CacheService()
- {
- }
- /// <summary>
- /// 查询列表
- /// </summary>
- /// <returns></returns>
- public List<dynamic> GetList()
- {
- var list = new List<dynamic>();
- var appConfig = LazyGetRequiredService<AppConfig>();
- Assembly[] assemblies = AssemblyHelper.GetAssemblyList(appConfig.AssemblyNames);
- foreach (Assembly assembly in assemblies)
- {
- var types = assembly.GetExportedTypes().Where(a => a.GetCustomAttribute<ScanCacheKeysAttribute>() != null);
- foreach (Type type in types)
- {
- var fields = type.GetFields(BindingFlags.Public | BindingFlags.Static | BindingFlags.FlattenHierarchy);
- foreach (FieldInfo field in fields)
- {
- var descriptionAttribute = field.GetCustomAttributes(typeof(DescriptionAttribute), false).FirstOrDefault() as DescriptionAttribute;
- list.Add(new
- {
- field.Name,
- Value = field.GetRawConstantValue().ToString(),
- descriptionAttribute?.Description
- });
- }
- }
- }
- return list;
- }
- /// <summary>
- /// 清除缓存
- /// </summary>
- /// <param name="cacheKey">缓存键</param>
- /// <returns></returns>
- public async Task ClearAsync(string cacheKey)
- {
- Logger.LogWarning($"{User.Id}.{User.UserName}清除缓存[{cacheKey}]");
- await Cache.DelByPatternAsync(cacheKey + "*");
- }
- }
|