asp.net – ConfigurationManager.AppSettings缓存

前端之家收集整理的这篇文章主要介绍了asp.net – ConfigurationManager.AppSettings缓存前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们知道IIS缓存ConfigurationManager.AppSettings,所以它只读取磁盘一次,直到web.config更改。这是为了性能目的。

有人在:

http://forums.asp.net/p/1080926/1598469.aspx#1598469

.NET Framework不会对app.config执行相同的操作,但它对于每个请求从磁盘读取。但我觉得很难相信,因为它会更慢。请告诉我他错了,或者我将不得不修复我写的每个控制台/ Windows窗体/ Windows服务。

更新我很遗憾,我错误地解释了人们在上面链接论坛中说的话。

解决方法

快速测试似乎表明这些设置只在应用程序启动时加载。
//edit the config file now.
Console.ReadLine();

Console.WriteLine(ConfigurationManager.AppSettings["ApplicationName"].ToString());
Console.WriteLine("Press enter to redisplay");

//edit the config file again now.
Console.ReadLine();
Console.WriteLine(ConfigurationManager.AppSettings["ApplicationName"].ToString());
Console.ReadLine();

您将看到所有输出保持不变。

原文链接:https://www.f2er.com/aspnet/254575.html

猜你在找的asp.Net相关文章