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

learn more… | top users | synonyms

52
votes
1answer
31k views

How is the java memory pool divided?

I’m currently monitoring a Java application with jconsole. The memory tab lets you choose between: Heap Memory Usage Non-Heap Memory Usage Memory Pool “Eden Space” Memory Pool “Survivor Space” Memory ...
38
votes
4answers
14k views

Can't pickle <type 'instancemethod'> when using python's multiprocessing Pool.map()

I'm trying to use multiprocessing's Pool.map() function to divide out work simultaneously. When I use the following code, it works fine: import multiprocessing def f(x): return x*x def go(): ...
23
votes
6answers
11k views

Keyboard Interrupts with python's multiprocessing Pool

How can I handle KeyboardInterrupt events with python's multiprocessing Pools? Here is a simple example: from multiprocessing import Pool from time import sleep from sys import exit def ...
18
votes
4answers
6k views

Pros and cons of having dedicated application pools over keeping web applications in one default app pool

What are pros and cons of having dedicated application pools over keeping web applications in one default app pool? Thanks in advance
18
votes
9answers
478 views

behavior of String literals are confusing

The behavior of String literals is very confusing in the code below. I can understand line 1, line 2, and line 3 are true, but why is line 4 false? When I print the hashcode of both are the same ...
13
votes
4answers
5k views

How to combine Pool.map with Array (shared memory) in Python multiprocessing?

I have a very large (read only) array of data that I want to be processed by multiple processes in parallel. I like the Pool.map function and would like to use it to calculate functions on that data ...
13
votes
1answer
10k views

How can I monitor/log Tomcat's thread pool?

I have a Tomcat installation where I suspect the thread pool may be decreasing over time due to threads not being properly released. I get an error in catalina.out when maxthreads is reached, but I ...
11
votes
1answer
3k views

Can I use a multiprocessing Queue in a function called by Pool.imap?

I'm using python 2.7, and trying to run some CPU heavy tasks in their own processes. I would like to be able to send messages back to the parent process to keep it informed of the current status of ...
10
votes
3answers
286 views

Java String pool - When does the pool change?

I have two questions: public static void main(String[] args) { String s1 = "bla"; String s2 = "b" +"l" + "a"; String s3 = "b".concat("l").concat("a"); if(s1 == s2) ...
10
votes
3answers
20k views

java.lang.IllegalMonitorStateException: (m=null) Failed to get monitor for

Why may this happen? The thing is that monitor object is not null for sure, but still we get this exception quite often: java.lang.IllegalMonitorStateException: (m=null) Failed to get monitor for ...
9
votes
2answers
877 views

How to let Pool.map take a lambda function

I the following function def copy_file(source_file, target_dir): pass Now I would like to use multiprocessing to execute this function at once p = new Pool(12) p.map(lambda x: ...
9
votes
1answer
1k views

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 call a function that has another pool inside. Thanks.
9
votes
3answers
3k views

How to designate a thread pool for actors

I have an existing java/scala application using a global thread pool. I would like to start using actors in the project but would like everything in the app using the same pool. I know I can set the ...
8
votes
5answers
745 views

Dealing with fragmentation in a memory pool?

Suppose I have a memory pool object with a constructor that takes a pointer to a large chunk of memory ptr and size N. If I do many random allocations and deallocations of various sizes I can get the ...
8
votes
1answer
778 views

python prime crunching: processing pool is slower?

So I've been messing around with python's multiprocessing lib for the last few days and I really like the processing pool. It's easy to implement and I can visualize a lot of uses. I've done a couple ...
8
votes
5answers
871 views

what is java.io.EOFException, Message: Can not read response from server. Expected to read 4 bytes, read 0 bytes

This question has been asked a couple of times in SO and many times in other sites. But I didn't get any satisfiable answer. My problem: I have a java web application which uses simple JDBC to ...
7
votes
6answers
1k views

One big pool or several type specific pools?

I'm working on a video game witch require high performance so I'm trying to setup a good memory strategy or a specific part of the game, the part that is the game "model", the game representation. I ...
7
votes
5answers
219 views

String Pool: “Te”+“st” faster than “Test”?

I am trying some performance benchmark regarding String Pool. However, the outcome is not expected. I made 3 static methods perform0() method ... creates a new object every time perform1() method ...
7
votes
5answers
7k views

Tips for using commons-pool in production

Based on an answer I got here, I started to give commons-pool a serious look. My last experience of using it was around 2003, probably version 1.1 or 1.2. Its main user, DBCP, is considered by many as ...
7
votes
2answers
581 views

Python multiprocessing: how to limit the number of waiting processes?

When running a large number of tasks (with large parameters) using Pool.apply_async, the processes are allocated and go to a waiting state, and there is no limit for the number of waiting processes. ...
6
votes
6answers
143 views

String Pool behavior

I read this Questions about Java's String pool and understand the basic concept of string pool but still don't understand the behavior. First: it works if you directly assign the value and both ...
6
votes
2answers
5k views

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 a progress bar dialog. I also need the result when the process is completed. A test ...
6
votes
2answers
7k views

Good Client Socket Pool

I need to manage long running TCP socket connections to an external server from my Java application. I'm looking for a good socket pool so I will be able to re-use the sockets. Are there any ...
6
votes
3answers
1k views

Regarding Java String Constant Pool

This is regarding the Java String Constant Pool. In one of my Programs i am decrypting the password for the database and storing it in a String. I heard that the Java Strings will be stored in a ...
5
votes
6answers
450 views

Multiprocessing.Pool makes Numpy matrix multiplication slower

So, I am playing around with multiprocessing.Pool and Numpy, but it seems I missed some important point. Why is the pool version much slower? I looked at htop and I can see several processes be ...
5
votes
5answers
4k views

Buffer pool management using C#

We need to develop some kind of buffer management for an application we are developing using C#. Essentially, the application receives messages from devices as and when they come in (there could be ...
5
votes
4answers
2k views

The best alternative for String flyweight implementation in Java

My application is multithreaded with intensive String processing. We are experiencing excessive memory consumption and profiling has demonstrated that this is due to String data. I think that memory ...
5
votes
4answers
668 views

String POOL in java

Java has string pool, due to which objects of string class are immutable. But my question stands - What was the need to make String POOL? Why string class was not kept like other class to hold its ...
5
votes
1answer
507 views

Alternative use patterns for python multiprocessing avoiding proliferation of global state?

This (enormously simplified example) works fine (Python 2.6.6, Debian Squeeze): from multiprocessing import Pool import numpy as np src=None def process(row): return np.sum(src[row]) def ...
5
votes
1answer
809 views

boost pool_alloc

Why is the boost::fast_pool_allocator built on top of a singleton pool, and not a separate pool per allocator instance? Or to put it another way, why only provide that, and not the option of having a ...
5
votes
1answer
130 views

Any clonable object pool implmentation in C or C++?

This may seem odd, but I'll try to rationalize it. I currently use boost.object_pool extensively in conjunction with shared_ptr, and recently I encountered a situation that I need to take snapshots of ...
4
votes
3answers
546 views

Do multiprocessing pools give every process the same number of tasks, or are they assigned as available?

When you map an iterable to a multiprocessing.Pool are the iterations divided into a queue for each process in the pool at the start, or is there a common queue from which a task is taken when a ...
4
votes
1answer
73 views

Should I use Pools for particles if i forced to re-init every particle every time i create them

I am creating a particle system in XNA4 and I've bumped into problem. My first particle system was a simple list of particles, whose instances are created when needed. But then I read about using ...
4
votes
1answer
236 views

Using `Rack::Session::Pool` over `Rack::Session::Cookie`

What are the different use cases of Rack::Session::Pool and Rack::Session::Cookie? As far as I understand (correct me if I'm wrong): Cookie stores all the session key:value pairs directly within ...
4
votes
1answer
480 views

What physics engine would be good for a Silverlight pool engine?

I have looked into the Farseer engine, but I barely scratched the surface. Would it or another engine be good for a reasonably accurate pool game engine?
4
votes
1answer
860 views

Python, multithreading too slow, multiprocess

I'm a multiprocessing newbie, I know something about threading but I need to increase the speed of this calculation, hopefully with multiprocessing: Example Description: sends string to a thread, ...
4
votes
3answers
1k views

multiprocessing Pool hangs when there is a exception in any of the thread

I am new to Python and trying a multiprocessing.pool program to process files, it works fine as long as there are no exceptions. If any of the thread/process gets an exception the whole program waits ...
4
votes
1answer
318 views

Suggestions on improving this simple object pool class for Java?

I am currently writing a game for android where there are enemies that fly across the screen and then disappear, to be replaced by other enemies. Now, this happens very fast, and my code currently ...
4
votes
4answers
433 views

optimal java threadsafe object pooling

I am not that familiar with the concurrent library of Java, so for the following problems I would normally just write my own mutex governed code, but I am concerned that with servlet traffic, the ...
4
votes
2answers
506 views

Multithreading Python FS Crawler

I've written a python function that scours a filesystem using a provided directory pattern, with optional 'actions' to take provided at each level. I then tried multi-threading it since some of the ...
4
votes
1answer
57 views

Azure Continuous Integration

I have an MVC 4 application on .NET 4.5.I have my application deployed on Azure cloud. Up until yesterday I would make changed to my application, then check in to TFS, then my application would ...
4
votes
2answers
470 views

detachNewThreadSelector crashes the app randomly

I am developing an iphone app in which I am extracting RSS feeds and then parsing them.My code is as bellow: - (void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; NSLog(@"in ...
4
votes
1answer
818 views

c# exception handling on background threads using Thread pool

The application I am working on uses thread pool. Here's the basic pseudo code. On the main thread foreach(Object obj in Component.GetObject()) { //Invoke the thread pool providing the call back ...
3
votes
2answers
172 views

Java 7 - String.intern() behaviour

I've read this answer about how to check if a string is interned in Java, but I don't understand the following results: String x = args[0]; // args[0] = "abc"; String a = "a"; String y = a + "bc"; ...
3
votes
1answer
132 views

Does Objective-C use string pooling?

I know that Java and C# both use a string pool to save memory when dealing with string literals. Does Objective-C use any such mechanism? If not, why not?
3
votes
1answer
1k views

Python Multiprocessing - Just not getting it

I've been spending some time trying to understand multiprocessing, though its finer points evade my untrained mind. I've been able to get a pool to return a simple integer, but if the function doesn't ...
3
votes
1answer
450 views

python multiprocessing, manager initiates process spawn loop

I have a simple python multiprocessing script that sets up a pool of workers that attempt to append work-output to a Manager list. The script has 3 call stacks: - main calls f1 that spawns several ...
3
votes
2answers
381 views

Thread Pool vs Many Individual Threads

I'm in the middle of a problem where I am unable decide which solution to take. The problem is a bit unique. Lets put it this way, i am receiving data from the network continuously (2 to 4 times per ...
3
votes
1answer
145 views

Persistent Processes Post Python Pool

I have a Python program that takes around 10 minutes to execute. So I use Pool from multiprocessing to speed things up: from multiprocessing import Pool p = Pool(processes = 6) # I have an 8 thread ...
3
votes
1answer
2k views

Django database connections pool with psycopg2.pool

I'm trying to implement persistent database connection pool with django. One of the options is to use built in psycopg2.pool code which provide different types of pools (PersistentConnectionPool, ...

1 2 3 4 5 7