Top "Pool" questions

A pool describes a cache of resources that an application can draw from to save instantiation time.

Python Process Pool non-daemonic?

Would it be possible to create a python Pool that is non-daemonic? I want a pool to be able to …

python multiprocessing pool
Filling a queue and managing multiprocessing in python

I'm having this problem in python: I have a queue of URLs that I need to check from time to …

python queue multiprocessing pool
Combine Pool.map with shared memory Array in Python multiprocessing

I have a very large (read only) array of data that I want to be processed by multiple processes in …

python multiprocessing shared-memory pool
How does the callback function work in multiprocessing map_async?

It cost me a whole night to debug my code, and I finally found this tricky problem. Please take a …

python multiprocessing pool
Memory usage keep growing with Python's multiprocessing.pool

Here's the program: #!/usr/bin/python import multiprocessing def dummy_func(r): pass def worker(): pass if __name__ == '__main__…

python memory multiprocessing pool
multiprocessing.Pool() slower than just using ordinary functions

(This question is about how to make multiprocessing.Pool() run code faster. I finally solved it, and the final solution …

python performance multiprocessing pool
Python multiprocessing with pathos

I am trying to use Python's pathos to designate computations into separate processes in order to accelerate it with multicore …

python multiprocessing pool pathos
How to create an object pool to be able to borrow and return objects

I wanted to know that, is it possible to create a pool of objects? So that I can take an …

java pool
How do you pass a Queue reference to a function managed by pool.map_async()?

I want a long-running process to return its progress over a Queue (or something similar) which I will feed to …

python queue multiprocessing pool
Error max pool size was reached?

I think this is because im not closing conections to my DB. I posted code im using below for my …

c# sql database pool