Where are the session variables saved?

前端 未结 3 1815
走了就别回头了
走了就别回头了 2020-12-15 03:41

Where exactly are session variables saved? Cookies? Server memory?

Again where are Application variables saved?

3条回答
  •  没有蜡笔的小新
    2020-12-15 04:28

    Session variables are stored on Server Memory and Disk as Application Variables are.

    From ASP.NET documentation:

    ASP.NET session state supports several storage options for session variables. Each option is identified as a session-state Mode type. The default behavior is to store session variables in the memory space of the ASP.NET worker process. However, you can also specify that session state should be stored in a separate process, in a SQL Server database, or in a custom data source. If you do not want session state enabled for your application, you can set the session mode to Off.

提交回复
热议问题