Aspnet slow down

  • Thread starter Thread starter Franck_c
  • Start date Start date
F

Franck_c

hello
I'm experiencing a long delay response with my aspnet application.
Usually the response time is 100ms. But if there no request During 5
min the next request take above 4000 ms (4 seconds). The following
requests take 100 ms untill there is another 5 fimutes slepp time.
It's like the application "goes to bed" or unload after 5 minutes.
I didn't find option to configure this behavior.
I 'm not using session state.
the only solution i have found is to hit a page every 4 minutes, but
it's not relly usefull in real life.
Any ideas.
thanks

My config is
Windows 2000 server
IIS 5.5
..NET 1.1
pentium 4
500 meg ram
 
in your C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\CONFIG you'll find a
machine.config file. in sessionstate tag you'll find a timeout
in sessionstate i think you'll find a timeout expressed in minutes. there
you can change and put your own timeout.
IIS has his own connection timeout and you'' find when you'll go to "default
web site" and properties on it. On web site tag is a connection timeout
expressed in seconds. try to change this too.
 
I have enabled sessionstate
timeout 20 minutes

for the processmodel which entry should i configure ?
All the entries that seems to solve my problem are set to infinite by default.
 
Back
Top