Tagged Questions
The threadstatic tag has no wiki summary.
13
votes
3answers
298 views
Using ThreadStatic to replace expensive locals — good idea?
Update: as I should have expected, the community's sound advice in response to this question was to "measure it and see." chibacity posted an answer with some really nice tests that did this for me; ...
7
votes
2answers
587 views
How does the ThreadStatic attribute work?
How does [ThreadStatic] attribute work? I assumed that the compiler would emit some IL to stuff/retrieve the value in the TLS, but looking at a disassembly it doesn't seem to do it at that level.
As ...
3
votes
1answer
40 views
asp.net mvc3 request thread affinity
I am using a proprietary IoC mechanism in my asp.net mvc3 application (on IIS7) that saves state in [ThreadStatic] fields and therefore relies on an assumption that HttpApplication.BeginRequest, ...
3
votes
2answers
249 views
.NET: ThreadStatic vs lock { }. Why ThreadStaticAttribute degrades performance?
I've written small test program and was surprised why lock {} solution performs faster than lock-free but with [ThreadStatic] attribute over static variable.
[ThreadStatic] snippet:
[ThreadStatic]
...
3
votes
3answers
294 views
C# Thread Parameters change during thread execution - why?
So I have a method that gets a Dictionary of List<myObj>, then cycles through the keys of the dictionary and passes each List<myObj> to a separate thread.
Here is some Code / Psuedo-Code:
...
3
votes
1answer
283 views
Inheriting ThreadStatic values to implement dynamic scoping in C#/.NET in multithreaded context
Is there a way to make newly-spawned threads inherit the values of ThreadStatic state (or something like it) on their parent threads? I would like to use this (or something like it) to implement ...
3
votes
2answers
121 views
Can I (safely) use the ThreadStatic attribute in ADO.NET Data Services?
I want to store per-thread data in an ADO.NET Data Service. Is it safe to use the ThreadStatic attribute on my thread-specific static variable, or will I run into problems? My concern is that my ...
2
votes
1answer
99 views
Is there any way to imitate ThreadStatic for use with HttpContext.Current.Items?
Because of Thread Agility in ASP.Net, ThreadStatic is not an appropriate mechanism to use in web applications for segregating static property access from one request to the next.
In order to avoid ...
2
votes
1answer
467 views
Are WCF request handling Thread Agile?
I have seen lots of documentation on how Agile Asp.Net Request handling is? I want to know is the case same with WCF Request handling. Can we rely on the fact that the Thread that starts Wcf request ...
1
vote
2answers
80 views
Why is ThreadStatic data being unexpectedly shared between threads?
I have a logging framework that I've written that has the ability to track "logging context". It has a pluggable strategy framework, however the one I use most often is a ThreadStatic variant that ...
1
vote
1answer
51 views
VB.NET 4.0: ThreadStatic doesn't appear to be thread safe for my TdConnection property
Here's my code:
<ThreadStatic()>
Dim _GlobalConnection As TdConnection
Public Property GlobalConnection As TdConnection
Get
If _GlobalConnection Is Nothing Then
...
1
vote
0answers
40 views
.NET: Does ExecutionContext.SuppressFlow dissociate ThreadStatic variables?
The title of the question pretty much says it all. Will static variables marked with the [ThreadStaticAttribute] get messed up if you use ExecutionContext.SuppressFlow() to cancel the propagation of ...
1
vote
1answer
117 views
ASP.NET and ThreadStatic as part of TransactionScope's implementation
I was wondering how TransactionScope class works to keep the transaction between different method calls (without the need to pass it as a parameter) and I came to this doubt. I've got two ...
1
vote
4answers
91 views
a viable solution to this problem?
I am calling from one piece of my code through several layers of 3rd party code, and the call surfaces back into my code at some point by calling some code I've written.
In other words, the code call ...
1
vote
1answer
177 views
Can a ThreadStatic IDisposable be automatically disposed?
This is not a question of how to automatically call dispose - my problem is the opposite:
I have a thread pool where each thread has a ThreadStatic Graphics (which was created from an Image) to ...
1
vote
3answers
996 views
ThreadStatic vs. ThreadLocal<T> Performance
I recently read this post about poor performance of fields marked ThreadStatic - they're apparently 60x slower than normal field access. Does .NET 4's ThreadLocal< T > perform any better?
Are ...
1
vote
1answer
79 views
Is there a straightforward way to have a thread-local instance variable?
With the ThreadStatic attribute I can have a static member of a class with one instance of the object per thread. This is really handy for achieving thread safety using types of objects that don't ...
1
vote
2answers
135 views
Is something along the lines of nested memoization needed here?
System.Transactions notoriously escalates transactions involving multiple connections to the same database to the DTC. The module and helper class, ConnectionContext, below are meant to prevent this ...
0
votes
1answer
49 views
.NET 4.0: How to clean up object references attributed as threadstatic after the thread as since exectured?
I have a static connection variable in an ASP.NET webform codebehind. In the page load event, I am executing several methods in separate threads. Each thread utilizes a threadstatic instance of this ...
0
votes
1answer
128 views
library using threadstatic to be used in asp.net
I have created a library which is using threadstatic variables to be used by various classes of the same library. Once initialized for a thread, all these classes work together to achieve a task using ...
0
votes
2answers
337 views
ThreadStaticAttribute in ASP.NET
I have a component that needs to store static values fore each thread. It's a general component that can be used in many scenarios and not only in ASP.NET.
I was thinking to use the [ThreadStatic] ...
0
votes
1answer
247 views
ThreadStatic member lose value on every page load
I have veeeeryyy basic singleton in asp.net web application:
[ThreadStatic]
private static BackgroundProcessManager2 _Instance;
public static BackgroundProcessManager2 Instance
{
get
{
...
0
votes
1answer
251 views
BizTalk mapper and the [ThreadStatic] attribute
I've recently encountered an issue with the multi-threaded nature of the BizTalk Mapper and how it handles external assemblies.
As this quote from MSDN indicates:
Important Any code written in ...