简化类结构
本文关键字:结构 | 更新日期: 2023-09-27 18:36:47
我已经设置了一个配置系统,它将从MySQL数据库中获取配置。我已经让它工作了,但现在我意识到要从缓存中获取值,我必须使用这个冗长凌乱的代码。
CacheLayer.Instance.Caches["app_config"].Current.EmailALertInterval
我想删除Current
,但我还没有弄清楚是否可以让类直接执行此操作。目前,实现如下所示。
public T Current
{
get
{
if (_current == null)
{
ReloadConfiguration();
}
return _current;
}
}
但我想简单地说:
CacheLayer.Instance.Caches["app_config"].EmailALertInterval
我正在查看类似的东西,但这仅适用于索引器。
public T this[T key]
编辑:只是为了添加更多上下文,我将添加更多代码。
这是 CacheLayer。它本质上允许我存储多个配置。例如,我可能有一个通用应用程序配置,但我也可以获取一系列使用的电子邮件。
public Dictionary<String,IGenericCache<dynamic>> Caches
{
get
{
return _caches;
}
}
public void AddCache(String config)
{
_caches.Add(config,new GenericCache<dynamic>(config));
}
在我的GenericCache中,我使用存储在MySQL数据库中的JSON字符串加载配置。
_current = JsonConvert.DeserializeObject<T>(db.dbFetchConfig(config));
GenericConfig
T
而不是dynamic
的原因是因为我希望能够在CacheLayer
之外进行自定义,不一定使用dynamic
。
关于我希望如何使用它的另一个示例。
List<String> EmailList = CacheLayer.Instance.Caches["EmailList"].Current;
这实际上会从MySQL中获取一个包含电子邮件列表的JSON数组。
有什么想法吗?
添加新属性
public int EmailALertInterval
{
get { return Current.EmailALertInterval; }
}
你有很多这样的配置,EmailAlertInterval只是一个例子,对吧?
然后,您必须更改 Caches 类,如您所提到的。
但是,由于您已经知道哪些缓存将进入 CacheLayer(据我了解您的示例),您可以在那里拥有属性,例如
CacheLayer.Instance.Caches.AppConfig.EmailALertInterval
该属性处理当前现在执行的操作。
public T AppConfig
{
get
{
if (appConfig == null)
{
return ReloadConfiguration();
}
return appConfig;
}
}
觉得应该更优雅