ASP.NET 全局/静态存储?

发布于 2024-09-19 08:52:26 字数 336 浏览 4 评论 0原文

我有一个线程安全对象,它是以前在 Windows 服务/客户端场景中使用的 API 的一部分。这个线程安全对象本质上是一个单例并存储在静态变量中,以便所有调用者都可以访问相同的状态。

这个 API 最近开始在 ASP.NET 应用程序中使用,我怀疑我们看到的一些奇怪的行为可能是由于意外的 AppDomain/生命周期行为造成的。所以我想知道是否可以获得一些验证:

静态变量是否可靠地适用于所有请求,或者 ASP.NET 是否对多个请求使用多个 AppDomain 进行了任何欺骗?

我知道网络花园就是这种情况......但我们的 IIS 配置为仅使用 1 个进程,并且配置为每天仅回收一次

I have a thread-safe object which is part of an API previously used in windows service/client scenarios. This thread-safe object is essentially a singleton and stored in a static variable so that all callers can access the same state.

This API has recently started being used in an ASP.NET application, and I suspect that some funky behavior we're seeing may be due to unexpected AppDomain/lifecycle behavior. So I was wondering if I could get some verification:

Is a static variable reliably available for all requests, or does ASP.NET do any trickery with having multiple AppDomains for multiple requests?

I understand this would be the case for a web garden ... but our IIS is configured to use only 1 process, and is configured to only recycle once a day

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

つ低調成傷 2024-09-26 08:52:43

对于 1 个工作进程中的所有请求,静态变量应该相同。我建议您将日志添加到您的 asp.net 应用程序中,特别是在 application_start/stop 和单例的静态构造函数中,以查看发生了什么。
希望这有帮助。

Static variable should be the same for all requests in 1 worker process. I would suggest you to add logs to your asp.net application, especially in application_start/stop and in static constructor of a singleton to see what's happening.
Hope this helps.

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