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

learn more… | top users | synonyms

0
votes
0answers
35 views

Apache Pool + How to inject object into existing pool

The problem is the server provider has a login method and it is asynchronous. It returns the session token as the post back response. So, When ever the postback response received with token i want to ...
0
votes
0answers
157 views

IIS site not using identity specified in app pool IIS 7 +

I have a web app from visual studio that is using local IIS server to run. It is an MVC 3 application. I setup the application pool in my IIS (win 7 pro) to use a service account for the application ...
1
vote
2answers
510 views

Database connection not closed inspite of close statements

I am facing a problem in closing database conenctions. I am getting the below error ================================================================================== 267137 [http-8080-Processor23] ...
0
votes
0answers
265 views

What is relation between IIS application pool and Database(Ex: SQL Server)?

Hi, What is the relation between IIS application pool and Database(Ex: SQL Server) for a ASP.NET application? Does any changes in IIS application pool configuration effect database connections? or ...
0
votes
1answer
177 views

Connection pooling pattern

How can I implement a connection pooling in Java? There is some pattern? I should use some connections and release it. This connection should be closed after a few times.
0
votes
2answers
303 views

python multiprocessing - Best way to initialize/pass database connection to be used across processes

I am having some difficulty in passing a database connection object or the cursor object using pool.map in the Python multiprocesing package. Basically, I want to create a pool of workers each with ...
1
vote
0answers
171 views

Trouble with python multiprocessing: Pool freezing

I run recently on quite some trouble with python multiprocessing Pool method. As you suggested, I'll try hardcoring these functions but: a) they use sqlite databases b) they are cross-dependent c) ...
0
votes
0answers
49 views

Does IOS 12.4 Basic have the “ip nat pool …” available [closed]

Could someone with Cisco IOS 12.4 Basic check to see if the command "ip nat pool" is available? We have 12.2 basic and I know it is in the 12.4 advanced version but our budget is very limited so I am ...
0
votes
1answer
531 views

IIS 7.5 - How To Grant Read/Write Access For A non-local Share To Application Pool

Everyting I;ve found via search on this talks about Read/Write for local drives only (typically C) and what I am having troubel with is getting the same Read/Write access for an applicatrion pool to a ...
3
votes
1answer
201 views

Python's multiprocessing map_async generates error on Windows

The code below works perfectly on Unix but generates a multiprocessing.TimeoutError on Windows 7 (both OS use python 2.7). Any idea why? Thanks. from multiprocessing import Pool def increment(x): ...
0
votes
2answers
158 views

boost::fast_pool_allocator throwing Access Violation exception

Ok, I'm having a bit of a problem using the boost::fast_pool_allocator. The code I have is working for the first couple of calls to fast_pool_allocator::allocate(1), but then is failing with the ...
0
votes
1answer
763 views

iis7 application pool hanging

I have a .net 4.0 website that was running on physical Windows server 2003 boxes on IIS6 32bit just fine. We have migrated to new virtual servers running Windows Server 2008 32 bit with IIS7. The ...
0
votes
2answers
231 views

is there a way to close all unused active connections in a jdbc connection pool

I was just thinking that in a large web application where tens of connections are made to database for every client using the application, there is a possibility that very few of the connections are ...
1
vote
0answers
342 views

JMS Connection Pooling with Websphere MQ 7.0 in Java Standalone application

I'll be developing stand-alone Java application being JMS client. I want to make sure that every time I send a message to a queue, I do not have to create session, connection etc. I was thinking of ...
2
votes
3answers
92 views

Unordered thread-safe collection class to use as pool in .NET

I needed a pool class that will support multiple producers and consumers at the same time (thread-safe) and initialize new instances if its empty. I wrote a Pool<T> class which takes a ...
0
votes
1answer
229 views

Is there any difference between number of jdbc connections destroyed and released back to pool?

I have deployed a web-application in glassfish application server. I have created a connection pool in glassfish and use DataSource for getting a connection from it. In my connection pool I have ...
7
votes
5answers
216 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 ...
3
votes
1answer
442 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 ...
1
vote
2answers
164 views

Integrate Pooled Lifestyle with PerWebRequest Lifestyle in Windsor

I have ASP.NET MVC application that uses Entity Framework as ORM. Now I'm using PerWebRequest lifestyle for EF ObjectContext. While profiling application performance under high load, I found a ...
0
votes
1answer
86 views

Is there analog of Javolution ArrayFactory

My android app need a lot of arrays. To prevent GC, I started to use Javolution.arrayFactory. But if I alloc memory in one thread calling like following. byte []buffer = ...
1
vote
4answers
145 views

Is String pool is carried out when two String having same literal ( java)

I have refernced the following links what is String pool in java? Garbage collection and Strings http://www.xyzws.com/Javafaq/what-is-string-literal-pool/3 Questions about Java's String pool ...
1
vote
1answer
162 views

Problems in using multiprocessing

maybe you can help me in finding my error in setting up a multiprocessing function. I set up a worker function, that fetches data (type float) and compute an average. If I use the following code (with ...
3
votes
2answers
377 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 ...
0
votes
1answer
674 views

WiX: Installer always changes AppPool to enable 32bit app

WiX installer installs silverlight web application. It can work under 32 or 64 bit app pool. But when installation completed I see that selected app pool always set to Enable 32-bit applications.It ...
0
votes
1answer
122 views

In control4 how can I use of Pool Proxy

Could anyone please guide in regards with the pool proxy development process. As the provided documentation (Proxy and Protocol guide) explains only about proxy classes but needing few more help and ...
1
vote
1answer
364 views

Jenkins - Managing a pool of resources

I'm trying to set up a Jenkins system where a certain program has to be run on a board on the network, accessed using telnet. We're talking about hundreds of such jobs here, therefore we will be ...
3
votes
1answer
128 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?
0
votes
1answer
328 views

Python multiprocessing.Pool is weird on Windows

I have a super simple python script as defined here import multiprocessing from multiprocessing import Pool print "CPUs: " + str(multiprocessing.cpu_count()) convertPool = ...
0
votes
2answers
163 views

Pooling memory in C - Memory Management

I am writing a cross platform shared library in C. The workflow of this library would be like, lib *handle = lib_init(); result = lib_do_work(handle); lib_destroy(handle); Usually, users will init ...
4
votes
1answer
317 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 ...
1
vote
1answer
168 views

Difference between pool and cluster

From a purest perspective, they kind of feel like identical concepts. Both manage sets of reosurces/nodes and control their access from or by external components. With a pool, you borrow and return ...
2
votes
0answers
203 views

Pass SIGINT/^C to children in a Pool?

I have the following code (just testing some assumptions about the Pool class): #!/usr/bin/env python from time import sleep from multiprocessing import Pool def run_process(args): print ...
1
vote
1answer
130 views

Postgres SQL Pool Connection without application server

This is me following up on a question I posted earlier, where I was advised to use a Connection Pool to connect to my Postgres database. According to Postgres' jdbc4 documentation, they mention that ...
1
vote
3answers
134 views

How to clear out or delete an unnamed widget-pool containing my static class

I'm working with Progress 10.1c I have a class that contains both static and non-static methods. The class is defined with USE-WIDGET-POOL. In the destructor I say "DELETE WIDGET-POOL". I create an ...
7
votes
2answers
578 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. ...
0
votes
1answer
214 views

Looking for a Linux threadpool api with OS scheduler support

I'm looking for a thread pool abstraction in Linux that provides the same level of kernel scheduler support that the Win32 thread pool provides. Specifically, I'm interested in finding a thread pool ...
1
vote
0answers
805 views

python pool.map vs map

I need to apply a complex function to a long series. Done sequentially this seems to be inefficient as I have access to a 12 core machine. Before making significant investment in this, i wrote up ...
0
votes
2answers
493 views

how to know is application pool memory enough?

I'm thinkin to use shared hosting which have application pool of 200MB. Before I buy this service I need to know how much memory my app actually consuming. And what happens when that application ...
0
votes
1answer
186 views

How to initialise,load properties and dispose my own connection pool using spring?

I have own connection pool: public final class ConnectionPool { private static final Logger log = Logger.getLogger(ConnectionPool.class); private static final int DEFAULT_POOL_SIZE = 10; ...
1
vote
1answer
235 views

Custom memory allocator for OpenCV

Is it possible to set a custom allocator for OpenCV 2.3.1? I have a memory pool created and I want OpenCV to use that pool for what it needs. Is that possible? If it is, how can it be done? Updated: ...
0
votes
1answer
227 views

Commons Pooling: Generic- vs StackObjectPool

The documentation for commons-pooling-1.6 defines GenericObjectPool as: GenericObjectPool provides robust pooling functionality for arbitrary objects. Furthermore, the Javadocs show a large ...
2
votes
2answers
316 views

How to loop select() to poll for data ad infinitum

#include <stdio.h> #include <unistd.h> #include <sys/time.h> #include <sys/types.h> int main () { char name[20]; fd_set input_set; struct timeval timeout; ...
1
vote
4answers
2k views

Java Connection Pool implementation

can you look at my connection pool if it is a possible way to implement it? public class ConnectionPool { private static List<DBConnection> pool = null; private static int available = ...
0
votes
1answer
140 views

how can i use thread pool lib via boost?

I copied the boost hpp files under /usr/include/boost , the release version is 1.37.0 , and i also copied the threadpool hpp files under /usr/include/boost. then i run "gcc quickstart.cpp -o test" , ...
1
vote
1answer
287 views

python multiprocessing Pool: processes spawn new copies of main application

I'm working on a larger size Python application which runs a solver on several hundred distinct problem scenarios. There is a GUI that allows the user to set up the solver configuration. In an attempt ...
1
vote
1answer
181 views

Can I increase the timeout for apache pool to reduce creation of new objects?

I'm trying to pool some objects and share them but I noticed blocking in the threads. I'm a bit new to Java so not sure if this is a problem with my lack of experience or something specific to pools. ...
2
votes
1answer
198 views

Issues with Pool and multiprocessing in Python 3

Currently I'm trying to convert my little python script to support multiple threads/cores. I've been reading about the multiprocessing module for several days now and I've also been trying to get it ...
0
votes
1answer
379 views

python multiprocessing - pool allocation

I notice this behavior in python for the pool allocation. Even though I have 20 processes in the pool, when I do a map_async for say 8 processes, instead of throwing all the processes to execute, I ...
0
votes
1answer
245 views

How to create managers for the worker threads?

The code works fine for a single "manager", which basically launches some HTTP GETs to a server. But I've hit a brick wall. How do I create 2 managers now, each with its own Download_Dashlet_Job ...
1
vote
0answers
141 views

Is there a way to create a pool of pools using the Python workerpool module?

I am using the workerpool module to create some threads to perform HTTP GETS to a server. I love the concept so far. I set up a download job for a list of urls and then assign the work to a pool of ...

1 2 3 4 5 7