vote up 0 vote down star

I've noticed that you can manually recycle an application pool via IIS and that doing so seems to slow down my web app significantly less than making changes to files in App_Code or the web.config file. Is this because recycling the application pool via IIS doesn't force a recompilation of the temporary internet files, but changing App_Code or web.config does?

flag

52% accept rate

1 Answer

vote up 2 vote down check

Yes... :)

Recycling just restarts the worker process to get rid of any memory leaks, etc. Changing anything will force a recompile.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.