Top "Thread-local" questions

Thread-local is a class from the Java API and the documentation defines it: "This class provides thread-local variables.

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 …

java thread-local resource-disposal
Using ThreadLocal in instance variables

Do Java ThreadLocal variables produce thread-local values if they are used as instance variables (e.g., in a method that …

java thread-safety thread-local thread-local-storage
ThreadLocal usage in enterprise application

If my web application and ejb application are on the same machine (on same JVM) and all the ejb calls …

java jakarta-ee ejb thread-local
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 …

java .net multithreading oop thread-local
ThreadLocal vs local variable in Runnable

Which one among ThreadLocal or a local variable in Runnable will be preferred? For performance reasons. I hope using a …

java multithreading thread-local
Java Cached thread pool and thread local

I have a question about java and concurrency. Let say I have a ThreadLocal variable called 'a'. And I use …

java multithreading concurrency threadpool thread-local
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 …

.net thread-local threadstatic
Pre-initializing a pool of worker threads to reuse connection objects (sockets)

I need to build a pool of workers in Java where each worker has its own connected socket; when the …

java concurrency threadpool thread-local threadpoolexecutor
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 …

python thread-local python-embedding