Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
3k views

ThreadStatic Modified with Static C#

I have some code where I use a thread static object in C#. [ThreadStatic] private DataContext connection I was wondering, in this case, what if any change would I get if I put the static modifier ...
8
votes
4answers
2k views

How is Java's ThreadLocal implemented under the hood?

How is ThreadLocal implemented? Is it implemented in Java (using some concurrent map from ThreadID to object), or does it use some JVM hook to do it more efficiently?
7
votes
2answers
418 views

Is this a thread safe way to initialize a [ThreadStatic]?

[ThreadStatic] private static Foo _foo; public static Foo CurrentFoo { get { if (_foo == null) { _foo = new Foo(); } return _foo; } } Is the previous code thread ...
6
votes
2answers
799 views

Will values in my ThreadStatic variables still be there when cycled via ThreadPool?

I am using ThreadStatic variables to store some data, but I am worried that the data I store on the thread will still be there after I am finished with it and release back to the ThreadPool. Do I ...
5
votes
2answers
1k views

Deterministic dispose of ThreadStatic objects

The ThreadStatic attribute declares a static variable as unique-per-thread. Do you know an easy pattern to correctly dispose such variables? What we used before ThreadStatic is a ...
2
votes
2answers
316 views

Seeking One-Size-Fits-All Context Based Storage

First off, I wish context based storage was consistent across the framework! With that said, I'm looking for an elegant solution to make these properties safe across ASP.NET, WCF and any other ...
1
vote
2answers
209 views

Using Parallel Extensions with ThreadStatic attribute. Could it leak memory?

I'm using Parallel Extensions fairly heavily and I've just now encountered a case where using thread local storage might be sensible to allow re-use of objects by worker threads. As such I was looking ...
1
vote
4answers
675 views

Thread Static variables for asynchronous operations in .NET

Is there any way to have ThreadStatic variables be transferred from one thread to another? I have a bunch of ThreadStatic variables, and now that I am converting my operation to be asynchronous, I ...