The threadstatic tag has no wiki summary.
0
votes
1answer
140 views
ASP.NET, WCF and per-operation static variables - how to use them safely?
I have a WCF service and I have the following (simplified) class:
public class PerOperationSingleton : IDisposable
{
private static bool _hasInstance = false;
public PerOperationSingleton()
...
3
votes
4answers
312 views
ThreadStatic - Does a WCF method call execute exclusively on a single thread?
One of the libraries our WCF service references uses a ThreadStatic variable. The service method sets its value at the beginning of each call. I'm wondering if this is safe - in other words, can we ...
3
votes
3answers
198 views
Can two parallel WCF requests get handled by the same thread when ConcurrencyMode = Multiple
I have a WCF service with ServiceBehavior(InstanceContextMode = InstanceContextMode.Single, ConcurrencyMode = ConcurrencyMode.Multiple). I want to use ThreadStatic variable to srore data.
I start ...
4
votes
1answer
68 views
What reasons are there to derive a subclass from ThreadStaticAttribute?
I was refreshing my memory on C#'s ThreadStaticAttribute this morning, and the following line jumped out at me:
Use this attribute as it is, and do not derive from it.
This line is present in ...
0
votes
0answers
85 views
associate transaction with thread in weblogic
I want to see if some thread opens too many transaction during execution.
I can connect to server through JMX and get list of current transaction and can get list of thread but:
I cannot link one to ...
6
votes
2answers
455 views
C# ThreadStatic + volatile members not working as expected
I was reading through the tips and tricks post and I thought I'd try out some of the C# stuff that I'd never done before. Therefore, the following code serves no actual purpose, but is just a 'test ...
7
votes
1answer
536 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, ...
2
votes
2answers
642 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
2answers
322 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
1answer
136 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 ...
1
vote
0answers
149 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 ...
4
votes
1answer
482 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 ...
5
votes
2answers
937 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]
...
2
votes
1answer
239 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
4answers
214 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 ...
22
votes
2answers
8k 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 ...
0
votes
1answer
234 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 ...
15
votes
3answers
742 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; ...
4
votes
2answers
2k 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] ...
3
votes
1answer
418 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 ...
10
votes
3answers
3k views
ThreadStatic vs. ThreadLocal<T> Performance: speedups or alternatives?
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 ...
0
votes
1answer
759 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
{
...
3
votes
3answers
509 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:
...
2
votes
1answer
101 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
148 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 ...
3
votes
1answer
796 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 ...
3
votes
1answer
419 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 ...
1
vote
2answers
335 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 ...
3
votes
2answers
183 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 ...