webconfig size problem
ASP.NET
2
Posts
2
Posters
1
Views
1
Watching
-
Hello What is the maximum size for webconfig not to have any problem? Forexample if the webconfig file is bigger than 5 MB or bigger than 50000 lines, that can couse a problem. Would it make my site work slower ?
viva la commune
The web config file is loaded when the application goes online. It is loaded only once and is shared between all users. So as long as you have a decent hardware configuration for your server, you shouldn't have any problems, it should work. On the flip side having a large number of config entries can increase the seek time when accessing config items. HTH!