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?
Correct. Session, Application State, and Cache are completely separate entities.
精彩评论