eugeneK
eugeneK

Reputation: 11136

What happens to Cache when Application Pool recycles?

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 those 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 ?

Upvotes: 4

Views: 11950

Answers (2)

kay.one
kay.one

Reputation: 7692

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)

Upvotes: 1

Philip Smith
Philip Smith

Reputation: 2801

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.

Upvotes: 6

Related Questions