Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to reset IIS (or otherwise clear cache) when restarting a web application?

I'm working on an ASP.NET app that keeps a lot of data cached. This data remains cached when I restart the app, so I have to reset IIS if I want to rerun the code that gets the data, otherwise it's just taken from the cache. Is there a way that I can automate this?

like image 474
DaveDev Avatar asked Jun 14 '10 10:06

DaveDev


1 Answers

Running iisreset from an elevated (on Vista/Win7/Win2008) command prompt will restart IIS and all hosted applications. This is very quick if you keep the command prompt open: up arrow and enter to repeat last command.

like image 83
Richard Avatar answered Oct 03 '22 20:10

Richard