Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道,asp.net 会话中的单例是特定的还是在所有用户会话之间共享?
在应用程序重新启动、用户会话结束或垃圾收集开始并从中清除内存之前,它是否也会保持活动状态。
非常感谢您的意见。
传统的单例 - 在静态变量中具有引用 - 只要 AppDomain 存在,就会存在。它不会是面向会话的。当 AppDomain 被回收(或应用程序关闭)时,它将被垃圾收集。