steve
steve

Reputation: 11

How to keep .net framework without sleep after a certain time

I have an issue regarding the .net framework. .net framework always sleep after a certain timeout.

Because of that, if the first user to access the .net application which uses.Net framework, its response of the application became to slow too much. I am thinking that it was caused by loading the .net framework from the first access. After the first user access the application, the second access response time become so quickly. Only first access time always too much slow.

How can I resolve this?

Upvotes: 0

Views: 46

Answers (1)

Doug Johnson
Doug Johnson

Reputation: 560

The question's a bit vague, but I'm going to guess that by ".NET" you mean you have an ASP.NET web application and it wakes up when the first user accesses it.

This is configurable within IIS Manager. The settings differ a bit based on the version of Windows that you have.

Application Pool: Start Mode: Always Running Idle Timeout (minutes): 0 Application: Preload Enabled: true

Upvotes: 1

Related Questions