views:

1266

answers:

2

When I setup an application pool for my web app in IIS 6 it defaults the worker process to recycle in 1740 minutes (29 hours).

Does this recycle happen even if there is activity on the web site or only if there is inactivity for 29 hours?

A: 

Read the Fine Manual

in particular, Configuring Worker Processes for Recycling (IIS 6.0)

Cheeso
Someone downvoted me for providing a direct link to the manufacturer documentation that describes in detail when IIS worker processes get recycled?
Cheeso
+2  A: 

This depends on how your worker process recycling is configured. There are several ways to configure it and each one has different implications.

  • Elapsed Time: In this mode the process will recycle after a period of time no matter how many requests come in
  • After a request threshold is reached
  • On Demand through the IIS Manager Tool

You can find detailed information on this topic at the following link

JaredPar