Top "Threadpool" questions

Pooling resources in given limits and automatically assign task to open workers.

What is the difference between these thread pools in Websphere?

In WebSphere Application Server, I see two thread pools that I can manipulate. There is one called "default", and another …

java multithreading websphere threadpool websphere-6.1
meaning of 'core pool size' in ScheduledThreadPoolExecutor's constructor

I'm new to ScheduledThreadPoolExecutor (as I usually use the simple Timer, but people have been advising against it), and I …

java threadpool threadpoolexecutor
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
Efficiently waiting for all tasks in a threadpool to finish

I currently have a program with x workers in my threadpool. During the main loop y tasks are assigned to …

c++ multithreading threadpool wait stdthread
Using JMS or ThreadPool to send email messages

I will like to know: I have a scenario. If a user adds a product to the system (I'm developing), …

java jms activemq threadpool jbossmq
java Callable FutureTask Excecuter: How to listen to finished task

I'm quite new to executer services. Liked doing everything myself, but I think it's time to trust these services. I …

java multithreading threadpool callable futuretask
How to print results of Python ThreadPoolExecutor.map immediately?

I am running a function for several sets of iterables, returning a list of all results as soon as all …

python map threadpool concurrent-programming concurrent.futures
Java- Using invokeAll to get future results in order but only for some threads

I...really don't know how to word the title better. But basically, what I have is a thread pool with …

java threadpool future executors
Minimizing Java Thread Context Switching Overhead

I have a Java application running on Sun 1.6 32-bit VM/Solaris 10 (x86)/Nahelem 8-core(2 threads per core). A specific usecase …

java performance multithreading solaris threadpool
Will the ThreadLocal object be cleared after thread returned to Thread Pool?

Will the contents that are stored in the ThreadLocal storage during an execution be cleared automatically when the thread is …

java multithreading threadpool thread-local