Ask Your Question
2

How does application pool recycling work in Asp.net IIS6?

asked 2022-10-05 11:00:00 +0000

scrum gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2022-07-30 21:00:00 +0000

plato gravatar image

Application pool recycling in IIS6 works by shutting down and restarting the application pool at specified intervals or under certain conditions.

The process of recycling includes stopping all running worker processes and unloading the associated application domain from memory. This releases any resources held by the application and ensures a clean slate for the new application domain.

The specific configuration options for recycling are available in the IIS6 management console and can be set to occur based on factors such as time intervals, CPU usage thresholds, or memory usage thresholds.

During the recycling process, any active requests to the application are allowed to complete before the process is terminated. Once the new application domain is loaded and running, new requests can be processed normally.

Overall, application pool recycling is a useful tool for maintaining the stability and performance of an application by periodically restarting the application to clear out any lingering issues or errors.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-10-05 11:00:00 +0000

Seen: 8 times

Last updated: Jul 30 '22