I have web application on IIS6 Win2003. This application connected to w3wp.exe process which reaches 50-70% of CPU after 3-4 minutes it was recycled ( forced one ). I have few places with Cache in this project so my questions concern the case if i set AppPool recycle limits and the process will recycle every few minutes to avoid high CPU overload unless i find what causing it which can take years ( heh )...
There are two types of Cache i'm using though the Web Application project, Output Cache and Cache.
What happens to two of th开发者_运维知识库ose once i recycle application?
In case two of those deleted what should i do in order to keep those alive even if i recycle Application Pool ?
The Cache is part of the application domain so recycling the Application Pool will invalidate all cache items.
This will also happen if you modify the web.config file or the bin folder.
you could look at out of process caching, that will survive app-pool restart and could be shared in a multi-node applications,
Have a look at Velocity (Microsoft AppFabric) or SharedCache (Opensource)
精彩评论