Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
7answers
10k views

When and how should I use a ThreadLocal variable?

When should I use a ThreadLocal variable? How is it used?
23
votes
6answers
4k views

Performance of ThreadLocal variable

How much is read from ThreadLocal variable slower than from regular field? More concretely is simple object creation faster or slower than access to ThreadLocal variable? I assume that it is fast ...
22
votes
4answers
513 views

Are C++ exceptions sufficient to implement thread-local storage?

I was commenting on an answer that thread-local storage is nice and recalled another informative discussion about exceptions where I supposed The only special thing about the execution ...
18
votes
1answer
745 views

When we should use scala.util.DynamicVariable?

When I read the source of scalatra, I found there are some code like: protected val _response = new DynamicVariable[HttpServletResponse](null) protected val _request = new ...
18
votes
4answers
5k views

What is “thread local storage” in Python, and why do I need it?

In Python specifically, how do variables get shared between threads? Although I have used threading.Thread before I never really understood or saw examples of how variables got shared. Are they ...
10
votes
5answers
1k views

What is so bad with threadlocals

Everybody in Django world seems to hate threadlocals(http://code.djangoproject.com/ticket/4280, http://code.djangoproject.com/wiki/CookBookThreadlocalsAndUser). I read Armin's essay on ...
9
votes
3answers
759 views

Why is using thread locals in Django bad?

I am using thread locals to store the current user and request objects. This way I can have easy access to the request from anywhere in the programme (e.g. dynamic forms) without having to pass them ...
9
votes
2answers
218 views

Do you know of some performances test of the different ways to get thread local storage in C++?

I'm doing a library that makes extensive use of a thread local variable. Can you point to some benchmarks that test the performances of the different ways to get thread local variables in C++: ...
9
votes
5answers
2k views

What are the advantages of instance-level thread-local storage?

This question led me to wonder about thread-local storage in high-level development frameworks like Java and .NET. Java has a ThreadLocal<T> class (and perhaps other constructs), while .NET has ...
8
votes
4answers
1k views

Servlet 3 spec and ThreadLocal

As far as I know, Servlet 3 spec introduces asynchronous processing feature. Among other things, this will mean that the same thread can and will be reused for processing another, concurrent, HTTP ...
8
votes
1answer
300 views

Java - How to check value of 'ThreadLocal' variables in Eclipse?

I have couple of ThreadLocals populated in my web app. And, while remote debugging the webapp, I want to see the value of these ThreadLocal variables in Eclipse (just like the way Eclipse shows other ...
8
votes
6answers
2k views

On which platforms is thread local storage limited and how much is available?

I was recently made aware that thread local storage is limited on some platforms. For example, the docs for the C++ library boost::thread read: "Note: There is an implementation specific limit to the ...
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
4answers
782 views

Synchronized and local copies of variables

I'm looking at some legacy code which has the following idiom: Map<String, Boolean> myMap = someGlobalInstance.getMap(); synchronized (myMap) { item = myMap.get(myKey); } The warning I ...
6
votes
2answers
2k views

What are best practices for using thread local storage in .NET?

I have a requirement in my application that I think can be met by using thread local storage, but I'm wondering if it's one of those things that's best to avoid. I have read a few articles on the ...
5
votes
2answers
138 views

ThreadLocal<> and memory leak

.Net 4. ThreadLocal<> implements IDisposable. But it seems that calling Dispose() doesn't actually release references to thread local objects being held. This code reproduces the problem: using ...
5
votes
3answers
97 views

Is there any benefit in puting a ThreadSafe object on a ThreadLocal?

I recently saw a piece of code which used a ThreadLocal object and kept a ConcurrentHashMap within it. Is there any logic/benefit in this, or is it redundant?
5
votes
3answers
733 views

How does a C++ compiler implement thread local storage in C++0x?

How does c++ complier implement thread local storage in C++0x I have searched this in google. But I can't find anything about this. Does anyone have any material about this ??
5
votes
6answers
3k views

Purpose of ThreadLocal?

Possible duplicate: When and how should I use a Threadlocal variable The purpose of ThreadLocal as given here states that the variable is local to any Thread accessing an object containing the ...
4
votes
4answers
112 views

What is the correct way to dispose elements held inside a ThreadLocal<IDisposable>?

When you use a ThreadLocal<T> and T implements IDisposable, how are you supposed to dispose of the members being held inside of the ThreadLocal? Occording to ILSpy The Dispose(), and ...
4
votes
1answer
99 views

Thread local data in linux kernel module

Is it possible to create thread local data in a linux kernel module? I need to store some data for each process/thread calling my module. Is there an easy way of using thread local data, or do I have ...
4
votes
2answers
158 views

Why would we use custom scope in spring? When is it needed?

Can any one please help me in understanding custom scope. I went through manual and through many online example and understood how it is being implemented. But, I am still not clear why we need a ...
4
votes
6answers
362 views

Is there a way to use thread local variables when using ACE?

I am using ACE threads and need each thread to have its own int member. Is that possible?
4
votes
6answers
3k views

ThreadLocal Resource Leak and WeakReference

My limited understanding of ThreadLocal is that it has resource leak issues. I gather this problem can be remedied through proper use of WeakReferences with ThreadLocal (although I may have ...
3
votes
1answer
111 views

c++11 thread_local keyword support in visual studio 11

So there's a list of c++11 features supported by visual studio. thread_local support is marked as partial. I was unable to find an explanation of what exactly partial support means here. Did they ...
3
votes
3answers
155 views

Threadlocal counter in Clojure

I have a web app where i want to be able to track the number of times a given function is called in a request (i.e. thread). I know that it is possible to do in a non-thread local way with a ref, but ...
3
votes
4answers
92 views

In Java, when ThreadLocal objects are modified, will the changes persist in the next request?

In a typical web application, when a request comes in, a filter looks for a Context object in http session. If one doesn't exist, it creates the Context object and stores it in http session. ...
3
votes
1answer
384 views

Static ThreadLocal variable in a WebApp - Are there any Security/Performance issues?

I am researching and experimenting with a ThreadLocal variable in my Java Web Application. I am using the ThreadLocal variable to store a username (collected from the session) before a request, and ...
3
votes
1answer
281 views

Memory concerns and ThreadLocal<T>

I noticed that ThreadLocal<T> implements IDisposable, implying I should dispose of a thread-local variable when I'm done using it. I'm just curious what the specific concerns are and what I ...
3
votes
1answer
114 views

Inheritable thread local in .NET

.NET 4.0 introduced ThreadLocal<T> class, which is great. Now, my app use case requires something like Java's InheritableThreadLocal class. Is there anything like that in .NET? If not, how ...
3
votes
2answers
258 views

Is it thread-safe to store data inside a static field when deploying on Google App Engine?

I was browsing through the code of Vosao CMS, an open source CMS hosted on Google App Engine (which I think is an awesome idea), and I stumbled upon the following code inside the CurrentUser class: ...
3
votes
2answers
155 views

How/where is the working directory of a program stored?

When a program accesses files, uses system(), etc., how and where is the current working directory of that program physically known/stored? Since logically the working directory of a program is ...
3
votes
1answer
621 views

Multiple independent embedded Python Interpreters on multiple operating system threads invoked from C/C++ program

Embedding Python interpreter in a C/C++ application is well documented. What is the best approach to run multiple python interpreter on multiple operating system threads (i.e. one interpreter on one ...
3
votes
3answers
1k views

ThreadLocal (and Singleton) in EJB Container

I've written an authorization system which relies on objects representing the current user. To simplify programming and increase performance I want to hold those objects in a ThreadLocal after the ...
3
votes
7answers
2k views

How to force a Java thread to close a thread-local database connection

When Using a thread-local database connection, closure of the connection is required when the thread exists. This I can only do if I can override the run() method of the calling thread. Even that is ...
3
votes
4answers
670 views

How to override ObjectOutputStream.writeStreamHeader()?

The method ObjectOutputStream.writeStreamHeader() can be overridden to prepend or append data to the header. However, if that data is based on an argument passed to the derived class's constructor ...
3
votes
5answers
1k views

ThreadLocal + java.sql.Connection + servlet filter = 2009?

I am writing some servlets with plain old mostly-JDBC patterns. I realized that I have several objects that would like to share a single transaction, and I'd like to enforce that one HTTP transaction ...
3
votes
3answers
605 views

Is thread-local storage persisted between backgroundworker invocations?

Are backgroundworker threads re-used? Specifically, if I set a named data slot (thread-local storage) during the DoWork() method of a backgroundworker, will the value of that data slot persist, ...
3
votes
4answers
4k views

threadlocal variables in a servlet

Are the threadlocals variables global to all the requests made to the servlet that owns the variables? I am using resin for the server. Thanks for awnser. I think I can make my self more clear. ...
2
votes
1answer
51 views

Testing ThreadLocal member variables

I have been trying to verify if the ThreadLocal members are indeed different in different threads. This is my TestClass whose object I am sharing among multiple threads. public class TestClass { ...
2
votes
2answers
128 views

ThreadLocal memory leak in Glassfish

Will the ThreadLocal cause memory leak in Glassfish server like it leaks in Tomcat? Why? http://wiki.apache.org/tomcat/MemoryLeakProtection
2
votes
3answers
170 views

Propagating ThreadLocal to a new Thread fetched from a ExecutorService

I'm running a process in a separate thread with a timeout, using an ExecutorService and a Future (example code here) (the thread "spawning" takes place in a AOP Aspect). Now, the main thread is a ...
2
votes
1answer
230 views

Is ThreadLocal in ASP.NET equivalent to a per request variable?

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 ...
2
votes
2answers
215 views

ThreadLocal property

If we have a ThreadLocal property (each thread has it's unique property) then which one is correct (we don't want use automatic setter/getter): A) private ThreadLocal<MyClass> _someProperty = ...
2
votes
1answer
398 views

java threadlocal singleton - what is it?

In layman speak, what does it mean when somebody says an object is a threadlocal singleton in Java? I was at a lecture about Java Server Faces, and everytime the FacesContext was spoken of - the ...
2
votes
2answers
167 views

Effect of ThreadLocals and side-by-side classloading

Assuming class A{ private static final ThreadLocal<String> tl = new ThreadLocal<String>(); } If A is loaded in just one classloader on the vm, the value of t1 is obvious. But ...
2
votes
5answers
520 views

Is it a good idea to use ThreadLocal as a context for data?

Is it a good idea to use ThreadLocal as a context for data in web application? Thx
2
votes
1answer
328 views

Thread locals in Python - negatives, with regards to scalability?

I'm wondering if there are some serious implications I might be creating for myself by using thread locals. I noticed that in the case of Flask, they use thread locals, and mention that it can cause ...
2
votes
2answers
461 views

Do I need to call ThreadLocal.remove in the following case

Instead of writing the following non-thread safe method. private static final Calendar calendar = Calendar.getInstance(); public void fun() { // Going to call mutable methods in calendar. } I ...
2
votes
1answer
320 views

ThreadLocal on Google App Engine (GAE)

I would like to make some request-wide data available in my app engine application. Examples: The URL for which the request was made. Authentication information. I see that ThreadLocal is on ...

1 2 3