Is web.config or app.config cached in memory

后端 未结 3 1162
青春惊慌失措
青春惊慌失措 2021-01-01 23:58

if it is cached, what happens if I use multiple web.config in multi-level folders

3条回答
  •  攒了一身酷
    2021-01-02 00:55

    They all get cached.

    Configuration is read once, at startup. With web.config, IIS watches for file changes and restarts the application.

提交回复
热议问题