ASP.NET Page.Cache versus Page.Application storage for data synchronization?

Posted by jdk on Stack Overflow See other posts from Stack Overflow or by jdk
Published on 2010-05-27T14:49:41Z Indexed on 2010/05/27 17:31 UTC
Read the original article Hit count: 106

Filed under:
|
|
|
|

Both Page.Cache and Page.Application can store an application's "global" data, shared among requests and threads.

How should one storage area be chosen over the other considering scenarios of data synchronization in the multi-threaded ASP.NET environment?

Looking for best practice and experienced recommendation.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about multithreading