Query re IIS/App pool recycling

Discussion in 'ASP.NET 2.0' started by beckstoneco, Dec 12, 2007.

  1. I'm testing a recently created site using ASP.NET 2.0. Currently it uses inproc Sessions and caches some static
    data in Application.

    I have occasional issues with losing sessions. I understand that this can occur quite a lot during development, fixing
    making config changes etc.

    I would just like to understand how the IIS is configured, particularly with regard to things like request limit, memory limit, timeout etc,
    so I kinda know what behaviour to expect in terms of recycling.

    Thanks,

    Chris
     
  2. I would like to know also these facts.

    Only thing I found out via KB or forum (don't remember exactly) is that app memory limit is 100Mb
     
  3. Bruce

    Bruce DiscountASP.NET Staff

    Yes.


    The application pool is configured to recycle the application once it uses over 100MB of memory.


    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     
  4. Any other limitation?
     
  5. Bruce

    Bruce DiscountASP.NET Staff

    Yes. IIS will also recycle the process if it uses more than 70% of CPU time over 5 minutes.

    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     
  6. Thanks

    R
     
  7. mjp

    mjp

    And (this is the last one, really!) if there is 20 minutes of inactivity the application will be dropped from memory.


    mjp
    ---
    DiscountASP.NET
     

Share This Page