IIS 7 Application Pool work process life and Session life

大憨熊 提交于 2019-12-05 18:34:09

Yes -- the session data is tied to the app pool worker process, so once the worker gets shut down, the session data is lost.

The default behavior is to store session variables in the memory space of the ASP.NET worker process.

(Of course, this assumes you're using InProc as the session mode. If you're using the database, then it will persist after the worker gets shut down.)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!