I was told that every time I refresh our web site, either individual pages or the entire site, I should first stop the application pool, update my website file or files, then start the application pool. My web site files consists, of HTML, JS, ASPX, INC, GIF, JPEG, CONFIG, etcetera. I'm asking because I believe I have updated my site without stopping the application pool and starting it, and also by stopping and starting it, just trying to find out what the correct approach should be.
2 Answers
It really depends on what changes you're making. If you're just updating a config file then often you don't even need to recycle the app pool, let alone stopping and starting it. Whereas if you've changed some asp.net stuff, then recycling the app pool is usually required, but once again, a stop and start is not usually required.
Here is a good explanation of exactly what happens when you recycle an app pool and/or reset IIS. Give it a read and you should get a better understanding of when a stop/start is required.
http://fullsocrates.wordpress.com/2012/07/25/iisreset-vs-recycling-application-pools/

- 1,389
- 1
- 10
- 19
-
I looked at the linked article and it was very informative. Thanks for your help and quick response. – Frank DiJohn Oct 09 '13 at 14:08
You don't have to recycle or re-start your application pool when you update your site. Neither for adding/updating files nor for updating your web.config.
IIS picks up all changes automatically.
Reasons for why you may want to recycle include:
- The application pool hangs and no longer serves requests.
- The application pool uses too much memory or your app has a memory leak.
By default an application pool is recycled every 29 hours, so usually you'll never have to recycle an app pool manually.

- 103
- 1
- 7

- 14,058
- 3
- 41
- 58
-
Thanks Peter very helpful! This will save me some unnecessary work I was doing. – Frank DiJohn Oct 10 '13 at 13:21