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?
|
All of the answers here are correct, but a little disappointing as they somewhat gloss over how cool ThreadLocal's implementation is. I was just looking at the source code for ThreadLocal and was pleasantly impressed by how it's implemented. The Naive Implementation If I asked you to implement a
The GC-friendly Implementation Ok try again, lets deal with the garbage collection issue by using weak references. Dealing with WeakReferences can be confusing, but it should be sufficient to use a map built like so:
Or if we're using Guava (and we should be!):
This means once no one else is holding onto the Thread (implying it's finished) the key/value can be garbage collected, which is an improvement, but still doesn't address the thread contention issue, meaning so far our The Clever Implementation We've been thinking about An implementation would look something like this:
There's no need to worry about concurrency here, because only one thread will ever be accessing this map. The Java devs have a major advantage over us here - they can directly develop the Thread class and add fields and operations to it, and that's exactly what they've done. In
Which as the comment suggests is indeed a package-private mapping of all values being tracked by
And
Essentially, use a map in this Thread to hold all our Needless to say, I was rather impressed by this implementation, it quite elegantly gets around a lot of concurrency issues (admittedly by taking advantage of being part of core Java, but I can forgive them since it's such a cool class) and allows for fast and thread-safe access to objects that only need to be accessed by one thread at a time. tl;dr
|
|||||||||||
|
|
You mean |
|||
|
ThreadLocal variables in Java works by accessing a HashMap held by the Thread.currentThread() instance. |
||||
|
|
|
I think you are referring to ThreadLocal? Source is here. |
|||
|
|
Here is a good example for using TLS (thead-local-storage) variables in Java.
public class Main {
public static void main(String[] argv) throws Exception {
ThreadLocal localThread = new ThreadLocal();
Object o = localThread.get();
localThread.set(o);
}
}
|
|||||||
|