When you store the values inside Application variable it gets stored in
worker process memory.
In out of process session storing mechanism, only session values get stored out of process.
The values stored inside cache and application remains inside the worker process boundaries.
When application pool get recycled, the values of application and cache gets lost as during recycling
the old worker process gets killed and new instance serves the upcoming request. The new worker process
never knows the previous values of application and cache.
satalaj
Star
10505 Points
2031 Posts
MVP
Re: Application Variables In State Server
Feb 16, 2012 02:57 PM|LINK
Hi,
When you store the values inside Application variable it gets stored in worker process memory.
In out of process session storing mechanism, only session values get stored out of process.
The values stored inside cache and application remains inside the worker process boundaries.
When application pool get recycled, the values of application and cache gets lost as during recycling
the old worker process gets killed and new instance serves the upcoming request. The new worker process
never knows the previous values of application and cache.