Tagged Questions

2
votes
1answer
69 views

Java instance variable visibility (ThreadLocal)

In the class ReentrantReadWriteLock is the following curious comment: transient ThreadLocalHoldCounter readHolds; Sync() { readHolds = new ThreadLocalHoldCounter(); setState(getState()); // …
4
votes
6answers
244 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 …
0
votes
3answers
109 views

ThreadLocal implementation

With reference to my earlier question, going a bit further, What are the disadvantages of using ThreadLocals as opposed to local variables How are they implemented Are session variables ThreadLocals …
13
votes
7answers
800 views

When and how should I use a ThreadLocal variable?

When should I use a ThreadLocal variable? How is it used?
4
votes
6answers
516 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 …