ASP.NET 中的 ThreadLocal 相当于每个请求变量吗?
我在 ASP.NET HttpHandler
中使用 ThreadLocal
变量。我认为这会导致每个请求产生一个新变量。
我的应用程序中有一些奇怪的行为。当 ThreadLocal
变量在 ASP.NET 页面中创建和释放时?
如果 ASP.NET 稍后将同一线程用于另一个请求,会发生什么情况?它是否会产生一个新的 ThreadLocal 变量,或者将使用之前创建的值(与另一个请求一起使用)?
如果在实际释放线程时释放 ThreadLocal 变量,那么我的假设在 ASP.NET 中会失败(因为线程返回到池中并且每个请求都不是唯一的)
I use a ThreadLocal
variable in an ASP.NET HttpHandler
. I assumed it will result in a new variable per request.
I have some strange behavior in my application. When a ThreadLocal
variable is created and disposed in an ASP.NET page?
What happens if the same thread is used by ASP.NET later for another request? Does it result in a new ThreadLocal
variable or the previously created value (which was used with another request) will be used?
If ThreadLocal
variables are disposed when the thread is actually disposed, then my assumption fails with ASP.NET (since threads get back to pool and are not unique per request)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ASP.NET 可以并且将会在请求之间重用线程 - 事实上,如果内存可用,它会为每个请求使用普通 .NET 线程池中的线程。您可能最好使用会话状态。
ASP.NET can and will reuse threads between requests- in fact, if memory serves it uses a thread from the normal .NET thread pool for each request. You are probably better off using session state instead.
尝试用这个:
Try with this: