Jordan Rieger
Jordan Rieger

Reputation: 2664

Are ASP.NET Application Cache and Application State storage affected by Session storage?

If I modify an ASP.NET website's configuration to store session data in a SQL State Database, my understanding is that this will not affect the storage of the Application Cache or the Application State, which are always stored in local server volatile memory.

Am I right?

Upvotes: 0

Views: 115

Answers (1)

mellamokb
mellamokb

Reputation: 56769

Correct. Session, Application State, and Cache are completely separate entities.

Upvotes: 1

Related Questions