What happens when I edit web.config?

前端 未结 5 1239
借酒劲吻你
借酒劲吻你 2020-11-29 00:36

I need to edit the web.config file on a live Sharepoint environment, but I\'m unsure what will happen if I do (I want to output custom errors).

Will this cause the I

5条回答
  •  失恋的感觉
    2020-11-29 01:12

    When you edit the web.config, It will restart the AppDomain (NOT AppPool) of that web application and clears the all occupied resources and memory. So other web applications running under that App Pool will not be affected. Also it will clear the sessions (in-proc) and memory cache.

提交回复
热议问题