ASP.NET Why are sessions timing out, sessionstate timeout set

后端 未结 4 1234
夕颜
夕颜 2020-12-02 00:22

Hey I have the following line in my web.config


Which I thought would keep sessions int

4条回答
  •  [愿得一人]
    2020-12-02 00:48

    AppDomain recycles are a very common problem for this if the sessionState is InProc. It is very much advised to use a StateServer or SQLServer for production systems instead. See Session-State Modes for documentation on how to use each, and the pros and cons of the three different types.

    Personally, we use SQL Server if we must for web server farms--slower but can be shared. We use State Server if the site will only be hosted on a single web server--state survives AppDomain restarts, but not entire server restarts.

    Also, in the past we have used an AJAX post in the background while the user is watching long running videos or performing long client-side tasks, so that the session timeout gets reset every few minutes. Nothing special about this code--just have a little JavaScript hit every few minutes some ASPX page that returns nothing.

提交回复
热议问题