Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Will it be disabled if I set the idle time-out to 0?

share|improve this question

1 Answer

Yes, setting the idle timeout value to zero will disable idle timeouts.

Oddly this isn't documented in the MS docs but my evidence for this arises from:

  • IIS Settings Schema

    If you have a look at the IIS settings schema in:

    C:\Windows\System32\inetsrv\config\schema\IIS_schema.xml

    The schema definition for idleTimeout under

    <sectionSchema name="system.applicationHost/applicationPools">

    it looks like:

    <attribute name="idleTimeout" 
           type="timeSpan" 
           defaultValue="00:20:00" 
           validationType="timeSpanRange" 
           validationParameter="0,2592000,60"/>
    

    If you look at the validationParameter attribute we see a range of 0 to 2592000 seconds (the ,60 specifies the granularity of the setting, in this case the value must be divisable by 60 [one minute]).

    If you see a starting permissible value of 0 then that usually indicates the setting can be disabled.

  • IIS7 Application Pool Idle Time-out Settings

    Brad Kingsley is the founder and CEO of OrcsWeb who are a fairly well known, respected and trusted Microsoft hoster and Gold Partner.

  • Then there's also the empirical evidence of the fact that it "just works".

share|improve this answer
Can you please provide documentation to prove this? I'm not suggesting it's wrong, just curious? (I'm also using this setting value, btw). – Pure.Krome Jul 20 '11 at 2:58
1  
@pure - please see my updated answer. – Kev Jul 20 '11 at 9:24
Thanks kindly Kev :) – Pure.Krome Jul 20 '11 at 10:55
3  
a headsup to others - after reading this, i set my idle timeout to 0 on IIS7 and it started timing out immediately - every page load took 15 seconds or so. i've now upped it to 600 and everything is blazingly fast again. – nailitdown Oct 26 '12 at 2:51
1  
since i posted that we had multiple problems with the VPS i was working with... quite likely it was misconfigured somehow. I just tried to duplicate it on the new VPS, and it behaves properly, as described. – nailitdown Dec 4 '12 at 8:30
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.