IIS工作进程在回收时会清除会话变量吗?

发布于 2024-07-05 15:13:30 字数 81 浏览 6 评论 0原文

我们正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

清音悠歌 2024-07-12 15:13:30

如果您使用默认内存中会话管理,则当工作进程回收时,会话变量将清除

If you are using the default in-memory session management, the session variables will be cleared when worker process recycles

忆沫 2024-07-12 15:13:30

是的,除非您使用进程外会话状态。

yes, unless you are using out of process session state.

七颜 2024-07-12 15:13:30

如果会话存储在进程中,那么 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文