Top "Threadpool" questions

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

Default values for System.Threading.ThreadPool.SetMaxThreads

Suppose, I don't set any values explicitly by calling the function: System.Threading.ThreadPool.SetMaxThreads What are the default values?

c# .net default threadpool
ScheduledExecutorService: when shutdown should be invoked?

I use ScheduledExecutorService in my application. I need to use it from time to time in certain Utility class to …

java threadpool executorservice
Threads configuration based on no. of CPU-cores

Scenario : I have a sample application and I have 3 different system configuration - - 2 core processor, 2 GB RAM, 60 GB HHD, …

java multithreading threadpool cpu akka
What's Spring's default queue size with a ThreadPoolTaskExecutor?

I'm using Spring 4.3.8.RELEASE with Java 7. I want to create a thread pool to execute tasks so I have set …

spring multithreading queue threadpool threadpoolexecutor
Is the max thread limit actually a non-relevant issue for Python / Linux?

The current Python application that I'm working on has a need to utilize 1000+ threads (Pythons threading module). Not that any …

python multithreading thread-safety threadpool python-multithreading
Python thread pool that handles exceptions

I've been looking around a good implementation of a simple python thread pool pattern and really can't find anything that …

python multithreading exception-handling threadpool
How Threadpool re-use Threads and how it works

My multithreading concepts are weak and trying to learn. In Java what I know is, we can't call a thread …

java multithreading concurrency threadpool
how are concurrent requests handled in PHP (using - threads, thread pool or child processes)

I understand that PHP supports handling multiple concurrent connections and depending on server it can be configured as mentioned in …

php concurrency threadpool child-process
Why does a ScheduledExecutorService not run a task again after an exception is thrown?

For executing periodical tasks, I looked at Timer and ScheduledThreadPoolExecutor (with a single thread) and decided to use the latter, …

java error-handling threadpool
How to utilize a thread pool with pthreads?

I have a queue of jobs and I want to make a pool of four threads where I can throw …

c pthreads threadpool reusability