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

learn more… | top users | synonyms

18
votes
9answers
472 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 ...
1
vote
1answer
30 views

CDI and pooling

Does CDI allows pooling in some way?Because I thought this is a feature of EJB beans but Adam Bien says in this screencast that container chooses whether to create new instance of class through ...
4
votes
1answer
56 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 ...
0
votes
0answers
6 views

GenericKeyedObjectPool's MaxActive limit was exceeded

I start a thread to monitor my GenericKeyedObjectPool, just like this: new Thread(new Runnable() { @Override public void run() { for(;;) { ...
0
votes
0answers
7 views

com.ibm.ws.objectpool.ObjectPoolImpl incompatible with com.ibm.security.krb5.wss.util.ObjectPool?

I'm following IBM WAS' tutorial on how to use object pools but when I run my web application at WebSphere, I receive an error: com.ibm.ws.objectpool.ObjectPoolImpl incompatible with ...
0
votes
1answer
21 views

How to pool a Java object in WebSphere Application Server 7.0?

I have simple class object which I want to pool in WebSphere Application Server 7.0. My Java class looks like this: SimpleBean { String str1; String str2; SimpleBean() {str1="This ...
0
votes
0answers
18 views

Pooling Powershell to call Exchange through ASP.NET

I have an ASP application that utilizes the Powershell for Exchange snappins to perform various functions, such as mailbox quota limit increases and submitting new mailbox export requests. The ...
0
votes
0answers
16 views

comp/env/pool not found in context “java:”?

I have a web application trying to access a JNDI declared in WebSphere Application Server. The JNDI is declared under Object pool managers. However, I'm receiving an error when I access the pool. The ...
-2
votes
0answers
17 views

Hibernate custom connection pooling in Tomcat

I have to implement a customized hibernate connection pool inside the tomcat container. can anybody suggest me any logic? Thanks in advance.
0
votes
2answers
35 views

String object life in StringPool

All we know that JVM stores String variables in a separate StringPool. Every time when we create a String (eg. String s1 = "anystring") it stores as a constant & when we create new String variable ...
0
votes
2answers
27 views

Advice on data structure for pooling objects

I'm implementing a simple pooling system in my box2d based game to spawn/despawn/pre-pool all objects. The objects in question are all circles that are created at a set radius. e.g. When I pre-pool I ...
0
votes
3answers
177 views

Is there a generic “Object Pool” implementation for Delphi?

I came across this while looking for a database connection pool implementation for Delphi. An object pool needs two methods: get - to acquire an object from the pool (this will create a new ...
2
votes
2answers
65 views

python multiprocessing pool terminate

I'm working on a renderfarm, and I need my clients to be able to launch multiple instances of a renderer, without blocking so the client can receive new commands. I've got that working correctly, ...
0
votes
3answers
75 views

how to operate On List of IIS Application Pools On Remote Server Using Powershell?

I am trying to build powershell program which would: connect to the remote server Show number of active IIS app pools on the active server based on the selection (1,2,3,4,....n etc) it would reset ...
0
votes
0answers
46 views

node-mysql pool vs single connection

I'm switching to the single connection of node-mysql to use a connection pool. I have a couple of questions about some behaviours I had with the single connection and I'm not sure they are needed in ...
-1
votes
0answers
17 views

Debug Diag report states that autoConfig is set to false but it is set to true

We have taken a snapshot memory dump (not a crash event) and used DebugDiag to assess the activity. DebugDiag consistently gives a warning that the "Threadpool autoConfig is set to false", while the ...
0
votes
1answer
54 views

JDBC connection pool to multiple MySQL databases on the same server (with the same user and password)

I have multiple websites (about 200) that are hosted by the same Java web app. Each site has its own MySQL database. The databases are all on the same MySQL server and are all accessed with the same ...
0
votes
1answer
67 views

How can I safely return an object to a pool after asynchronous usage?

Given I have a pool of objects, how can I safely return an an pooled object back to the pool after usage if the usage is asynchronous? (using Future and Promise in this case) Here's an example: ...
0
votes
0answers
41 views

Java Connection pool exhausted error

I know normally if the error happened, i mean org.apache.commons.dbcp.SQLNestedException: Cannot get a connection, pool exhausted, which means the conenction is overloaded. but in this case, I pretty ...
0
votes
0answers
23 views

Third party connection pool software?

I am totally familiar with connection pool libraries, like c3p0, etc... I'm cool with connection pools that are managed by a web container, like Tomcat and WebSphere. But what about the scenario ...
1
vote
1answer
58 views

MySQL Connection Pool for mysql client

Is there a way to have an established connection pool on the client side (running as daemon), so it can be used by the mysql client on linux? mysql ==(named pipe/unix domain socket?)==> mysql ...
0
votes
2answers
52 views

Must a call to malloc be matched by a call to free in a dynamic memory pool?

I have some code here that implements a dynamic memory pool. The pool starts off at size 0 and grows with each successive allocation. It is used to try and minimise the overhead of tons of allocations ...
0
votes
1answer
203 views

ActiveMQ's Messages being redelivered (PooledConnectionFactory misconfig suspect)

I have an application which is using spring MessageListenerContainers along with ActiveMQ. I've configured it to use PooledConnectionFactory, following activemq's documentation. My scenario is as ...
0
votes
0answers
14 views

what's the difference between boost::pool<>::malloc and boost::pool<>::ordered_malloc, and when should I use boost::pool<>::ordered_malloc?

I'm using boost.pool, but I don't know when to use boost::pool<>::malloc and boost::pool<>::ordered_malloc? so, 1.what's the difference of boost::pool<>::malloc and ...
1
vote
1answer
41 views

What happens if I close a connection from connection pool of stardog

Take a look at the following code. 1. I am creating a connection pool to stardog 2. Obtaining a connection from the pool. 3. Returning the connection to pool after the use. My question is what will ...
1
vote
0answers
82 views

WCF Service only works when Enable 32-bit applications is true in IIS 7.5 App Pool

When running the service, everything seems to be working when that option is enabled. I've searched if there were any 32-bit assemblies running with the service with corflags and I didn't find any. ...
1
vote
1answer
58 views

Stateless EJB threading issue

Consider the following two EJBs: @Stateless public class MyBean1 { pulic void method1() { //method implementation comes here } pulic void method2() { //method ...
0
votes
3answers
61 views

How to work with many connection in c# and ASP.NET?

This is how I do my connection SqlConnection conn = new SqlConnection(connectionstring); conn.open(); SqlCommand comando = new SqlCommand(/*my query update/delete/insert/select o execute sp*/,conn); ...
0
votes
0answers
40 views

How to adjust innodb buffer pool hit ratio as 60%?

Could you tell me how to adjust innodb buffer pool hit ratio as 60%? As i know,, there is a formula to get the ratio. innodb buffer pool hit ratio = 1 - (innodb_buffer_pool_reads / ...
1
vote
2answers
111 views

Creating symbolic links in PHP/IIS 8 when using the new Application Pool Identity feature

I'm running IIS 8, Server 2012. I have a web application where the programmers want to create symbolic links. Here is some sample code: $target = 'symlink.php'; $link = 'symlink-link.php'; ...
0
votes
0answers
22 views

Map of file streams with LRU functionality and file stream closing/reopening

I need to maintain some sort of "pool" of the opened files. I need to be able to write to the end of file (append-only) read entire content of the file currently I'm keeping the content in memory, ...
0
votes
0answers
36 views

cxf ws “no proxy” client

I'm working with a third part's Web Service and under HTTPS communication seems that multiple requests are queued and return results at the same time. For test purposes I want to create a WS CXF ...
0
votes
2answers
161 views

Python 2.7: process pool not working (inifinite workers created)

My multiprocess pool is not working and is behaving strangely: from multiprocessing import Pool import multiprocessing, logging logger = multiprocessing.log_to_stderr() ...
0
votes
0answers
40 views

Telnet connection pool

I have an application which connects to different machines via telnet to run some commands on every request.Currently in every request it is connecting to a server then executing the commands and ...
0
votes
1answer
68 views

How to let CommonsPoolTargetSource pool size grow as needed?

I noticed that when there are many requests and the max pool size is reached, other requests wait until a resource is free. How do I setCommonsPoolTargetSource such that when it reaches its max pool ...
0
votes
2answers
173 views

oracle.jdbc.pool.OracleDataSource run a command for every new connection

I would like to execute an ALTER SESSION command on every new connection coming from a particular oracle.jdbc.pool.OracleDataSource connection pool. Is there a way to do that?
0
votes
0answers
42 views

ZMQ: Queue of tasks without strict round-robin

I'm trying to figure out how to do the following with ZMQ: Multiple clients send a request to a server (PUSH) The server has a queue (pool) of those jobs (PULL/I don't know) Multiple workers get a ...
0
votes
1answer
80 views

Random Sprite with Sprite Pool

I wanna know how Sprite Pool works, since I dont really understand them. What I'm trying to do is show random sprites each time user touch the button (I already manage the control), but my code ...
5
votes
6answers
449 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 ...
0
votes
0answers
40 views

How to guarantee hadoop FileSystem connections are managed when I use pool

Since FileSystem.get is not thread-safe, I use FileSystem.newInstance instead. but calling newInstance method each time when I need connection to HDFS may not be a good idea. so I made FileSystem ...
0
votes
2answers
177 views

Gevent pool with nested web requests

I try to organize pool with maximum 10 concurrent downloads. The function should download base url, then parser all urls on this page and download each of them, but OVERALL number of concurrent ...
0
votes
0answers
82 views

IIS 7.5 Classic application mode dose not serve aspx files

I have a asp.net web site that just run on Classic application Pool mode. So I have set application mode to classic on IIS. But, When I set Classic pool for web site, There are no *.aspx handler, in ...
0
votes
4answers
58 views

Simple String Pool

If I have a completely empty String Pool in Java and I do the following, does the string object 'Hello' be added to the string pool.? String myStr = new String('Hello'); I know that subsequent ...
0
votes
0answers
163 views

High CPU Usage with Waiting for Response for MVC in IIS all of a sudden

I have a Windows 2008 Server and it hosts a few applications of my company. I do have an MVC ASP.Net application being hosted on that server as well. It has been working fine for more than half a year ...
0
votes
1answer
60 views

Does anyone know why my object pool won't work after i dispose of an object?

After trying to optimize my game i started off with the obvious object pool. I followed the more complicated one using max_growth etc then went on to a simple one but i keep hitting the same problems. ...
0
votes
1answer
92 views

Monitor status of Object pool workers

I have created this thread from inside another class for reading status of executors on finish and cancel rest of tasks on failure. Tasks are Runnable If there is any failure seen, overall status ...
0
votes
4answers
119 views

storing and retrieving a pointer in an array in c++

I have a large char array which is functioning as a memory pool and want to store a pointer in the first position of the array which points to whatever the next open position in the pool is, so every ...
0
votes
0answers
103 views

CompletionService and ObjectPool

//Worker Thread class MyRunnable implements Runnable { private String status; public void getStatus() { return status; } public void run() { try { if(Thread.interrupted()) throw new ...
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"; ...
0
votes
1answer
209 views

C++ memory pool with char array

I just have a quick question regarding how a char array works in regards to a memory pool and allocating pointers of other variable types to it. I am working on an assignment which uses a char array ...

1 2 3 4 5 7