Class DisposableThreadLocal<T>
Java's builtin ThreadLocal has a serious flaw: it can take an arbitrarily long amount of time to dereference the things you had stored in it, even once the ThreadLocal instance itself is no longer referenced. This is because there is single, master map stored for each thread, which all ThreadLocals share, and that master map only periodically purges "stale" entries.
While not technically a memory leak, because eventually
the memory will be reclaimed, it can take a long time
and you can easily hit
This class works around that, by only enrolling WeakReference values into the ThreadLocal, and separately holding a hard reference to each stored value. When you call Dispose(), these hard references are cleared and then GC is freely able to reclaim space by objects stored in it.
You should not call Dispose() until all threads are done using the instance.
@lucene.internal
Inheritance
Assembly: DistributedLucene.Net.dll
Syntax
public class DisposableThreadLocal<T> : IDisposable, ISerializable
Type Parameters
Name | Description |
---|---|
T |
Constructors
Name | Description |
---|---|
DisposableThreadLocal() | |
DisposableThreadLocal(SerializationInfo, StreamingContext) |
Methods
Name | Description |
---|---|
Dispose() | |
Get() | |
GetObjectData(SerializationInfo, StreamingContext) | |
InitialValue() | |
Set(T) |