Reputation: 2664
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
Reputation: 56769
Correct. Session, Application State, and Cache are completely separate entities.
Upvotes: 1