Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How long will an ASP.NET MVC application run

Tags:

I wonder how long will an ASP.NET (MVC) application run, when no new requests come in? Lets say I'm using an IOC Container ans have a Singleton Object serving to the clients. As far as I know it will serve different page requests. But how long will it live when no new request come in? Is there any timeout (maybe configured through IIS) that says when my app will shut down?

like image 520
Christoph Avatar asked Mar 08 '10 11:03

Christoph


People also ask

What is MVC application life cycle?

MVC actually defined in two life cycles, the application life cycle, and the request life cycle. The Starting point for every MVC application begins with routing. After that, the received request figures out and finds how it should be handled with the help of the URL Routing Module.

Is ASP.NET MVC still in use?

It is no longer in active development. It is open-source software, apart from the ASP.NET Web Forms component, which is proprietary. ASP.NET Core has since been released, which unified ASP.NET, ASP.NET MVC, ASP.NET Web API, and ASP.NET Web Pages (a platform using only Razor pages).

Why is MVC faster?

Faster development process:MVC supports rapid and parallel development. If an MVC model is used to develop any particular web application then it is possible that one programmer can work on the view while the other can work on the controller to create the business logic of the web application.


1 Answers

Typically it will run for 20 min because that is the default value for IIS7. You can configure that value, however.

like image 120
mnemosyn Avatar answered Sep 28 '22 05:09

mnemosyn