IIS工作进程在回收时会清除会话变量吗?
我们正在 IIS 6 上编写一个 asp.net Web 应用程序,并计划将用户登录变量存储在会话中。 当worker进程回收时,这个会被删除吗?
We're writing an asp.net web app on IIS 6 and are planning on storing our user login variables in a session. Will this be removed when the worker process recycles?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您使用默认内存中会话管理,则当工作进程回收时,会话变量将清除
If you are using the default in-memory session management, the session variables will be cleared when worker process recycles
是的,除非您使用进程外会话状态。
yes, unless you are using out of process session state.
如果会话存储在进程中,那么 YES 工作进程回收将删除它。 如果您想保留会话值,请使用进程外模型或 sql server 来存储它。
If session is stored in-proc then YES worker process recycle will remove it. Use Out-of-proc model or sql server to store session value if you want to keep it stored.