4

This morning after Windows Updates ran and rebooted a pair of web servers, I noticed that one of the sites running there was not responding. After some digging I noticed 100000s of read/write/delete operations in the asp.net temp files folder. Can we do anything to avoid this?

af-at-work
  • 166
  • 1
  • 6

2 Answers2

3

You can tone it down some with precompilation:

How do I prevent IIS from compiling website?

but IIS thought something changed and needed recompiled. Were the updates installed hotfixes to framework components perhaps?

Community
  • 1
  • 1
Bill
  • 284
  • 2
  • 6
1

You could consider deploying your website as a precompiled Web Application instead of a website, if this is appropriate to your situation?

podiluska
  • 50,950
  • 7
  • 98
  • 104