A pool describes a cache of resources that an application can draw from to save instantiation time.
0
votes
2answers
220 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
85 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
61 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
175 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
68 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
104 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
132 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
111 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
203 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
249 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 ...
0
votes
0answers
33 views
Apache Commons Pool LIFO vs FIFO
I'm wondering which are the advantages of a LIFO stack vs a FIFO queue in the implementation of a pool with Apache Commons Pool. Wouldn't be more "secure" to default as FIFO to avoid getting timeout ...
0
votes
1answer
19 views
Pooling: Cleanup Pool
I have a pool of fileserver connections. (to cache connected fileservers)
Now, if there are 100 open connections in the pool, I want to cleanup after a while.
I would do a cleanup after 15 min. (e.g. ...
0
votes
0answers
195 views
which is the correct configuration for context.xml and web.xml for a connection pool with JNDI?
I am using the tomcat pool connection with JNDI, and everything apears to be ok, but, after 2 days with my app on production, I look up at the open connections in my database, and there's a ...
1
vote
1answer
100 views
How to parallelise a function from another module using python multithreading without pickling it?
In my implementation of an svm prediction model, I would like to make the execution of a function svmutil.svm_train multi-threaded. Although I'm new to the implementation of multi-threaded programs, I ...
0
votes
1answer
71 views
How do I bind a pool (without too much boilerplate) in Guice?
I have a common interface like so:
trait Thing {
...
}
And implementations like so:
class ThingA extends Thing {
...
}
class ThingB extends Thing {
...
}
Which one to use is determined at ...
0
votes
1answer
155 views
get a single Thread from ThreadPoolExecutor
I am running a ThreadPoolExecutor with a number of Threads.
I want to manipulate some data in the Threads, so I want to send an object to
the thread and after it finishes use the data.
The only way I ...
0
votes
1answer
64 views
does Akka manage Camel consumer thread or Camel context manage consumer thread?
the camel document mentioned that CamelContext manages threads for its consumers.
Akka integrated Camel thru Camel extension. we know that Akka has its own thread pools (dispatcher). so the question ...
1
vote
1answer
182 views
java.lang.ClassFormatError: Invalid constant pool index 63
I tried to extract a .class File from the .jar, and it worked, but then I changed something an now i got this error:
java.lang.ClassFormatError: Invalid constant pool index 63
Here's my code:
...
1
vote
2answers
116 views
Should I use Thread Pool instead pool in my situation?
I have simple Tower Defence game. Every monster moves in it's own thread so when new wave comes about 20 new threads are done (from 10 to 25, randomly). I remember something like executor class which ...
2
votes
0answers
244 views
Should I use tcmalloc/jemalloc replace memory pool?
In my project, I use memory pool (boost::pool), but it eat too much memory(measured 22G), so I want to use tcmalloc/jemalloc replace memory pool, I consider the sides below:
1.performance
2.memory ...
1
vote
0answers
215 views
MongoDB Pool timeout
I need some help analyzing a problem I am encountering during the last weeks.
Every here and then my application hangs. Basically it is based on postgres but for some very speedy interactions we ...
6
votes
6answers
155 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 ...
0
votes
1answer
231 views
How to detect closed connections in connection pool?
Imagine having an active BoneCP jdbc connection pool when the network connectivity goes down, then comes back after a minute. In order to automatically reconnect and recreate the pool, how should ...
10
votes
3answers
297 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)
...
2
votes
3answers
182 views
Kind of load balanced thread pool in java
I am looking for a load balanced thread pool with no success so far. (Not sure whether load balancing is the correct wording).
Let me explain what I try to achieve.
Part 1:
I have Jobs, with 8 to 10 ...
4
votes
1answer
74 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 ...
3
votes
1answer
161 views
Jetty server hangs with large object pool without any requests being made
I am running a web application using jetty server with maven. The application contains a large pool of static objects in Lists and Maps contributing to the 2.8GB of physical memory usage. After ...
0
votes
1answer
244 views
Spawning more threads than you have in a gevent pool
As I understand it the idea of a pool in gevent is to limit the total number of concurrent requests at any time, to a database or an API or similar.
Say I have code like this where I am spawning more ...
0
votes
1answer
134 views
Connection pool API with better performance [closed]
1Âș parte of the question:
My application is receiving lots of data from a TCP socket and I need to store the data in a MySQL database. Now, I'm just creating a new connection each time I want to ...
0
votes
1answer
118 views
How to see pool usage information using probe for Srping managed standalone Tomcat 7 pool
I use Srping managed standalone Tomcat 7 pool (tomcat-jdbc.jar) using the version 7.0.26. psi-probe 2.3.2 also is installed at Tomcat. I cannot see pool usage in probe (on "JDBC USAGE" column) and any ...
3
votes
3answers
401 views
Memory Pool in C++ [closed]
I have very high performance C++ library. I am thinking of writing a memory pool so that I do not have to use global new and delete. I did some reading. But wanted to know will this help me in ...
0
votes
0answers
217 views
Caused by: javax.naming.NameNotFoundException: pools
I am fighting this error for a few days already.
I can't find reasonable explanation about it on the Internet:
I use Glassfish 3.1.2.2 (build 5)
2012-12-19T17:54:26.046+0200 ...
2
votes
1answer
128 views
multiprocessing? multithreading? pool? queue? brute forcing
this is a general knowledge question, soon to turn into a project. I have a script that attempts to brute force a sha1 with a known salt. In this application anyways the salt is known. Anyways, script ...
8
votes
5answers
1k 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 ...
1
vote
0answers
111 views
Java based Database Connection Pool library for multiple database users
Our Java application (web application that runs on Jetty 7.5.4) uses an underlying database. There are multiple databases users and the Java part needs to access the DB using those database users. Am ...
0
votes
2answers
90 views
To Pool or not to Pool java crypto service providers
I face a regular dilemna while coding security frameworks : "to pool or not to pool"
Basically this question is divided on two "groups" :
Group 1 : SecureRandom because the call to nextBytes(...) ...
0
votes
0answers
190 views
Spring JdbcTemplate - Connections - Unable to Close it seems
I have a configured data source (mySQL) inside my Spring Application as below :
<bean id="dataSource"
class="org.apache.commons.dbcp.BasicDataSource">
<property ...
0
votes
1answer
54 views
Thread Pool Execution Order and Passing Future to Another Thread
I would like to create a thread pool with two threads. I would like to ensure the first threads get executed first and after the completion of first thread then the second thread get start. Besides ...
0
votes
1answer
85 views
NSInternalInconsistencyException - nul class for object in autorelease pool
As many should know now, I am new to Objective-C, and I need some help to complete this project. I am getting the error NSInternalInconsistencyException - nul class for object in autorelease pool.
...
0
votes
1answer
122 views
Creation of url connection pool in java
I have some code like this in a method :
URL url = new URL(endPoint);
String encoding = Base64.encodeBase64String(this.key.getBytes());
connection = (HttpURLConnection) ...
0
votes
0answers
100 views
pthread_cond_signal() not waking thread [closed]
Here is my code
pthread_mutex_lock(&mutex);
while(!condition){
pthread_cond_wait(&variable,&mutex);
}
printf("\t Reach !\n");
//do things
pthread_mutex_unlock(&mutex);
...
0
votes
0answers
157 views
IIS 7.5 Recycling App Pool at scheduled time
we are experiencing an issue with application pools not recycling at the time they have been designated (could be because they have been shutdown, this is part of the question). We have about 20 app ...
1
vote
2answers
123 views
How to get the amount of “work” left to be done by a Python multiprocessing Pool?
So far whenever I needed to use multiprocessing I have done so by manually creating a "process pool" and sharing a working Queue with all subprocesses.
For example:
from multiprocessing import ...
0
votes
1answer
117 views
Weblogic DataSource Pool Size
I am triying to determine datasource pool size for Weblogic Server.
My application should be accept 1000 request per second. Each request just simple database operation like read/write. I set Maximum ...
0
votes
0answers
168 views
How to create a GlassFish server connection pool to access database?
I'm trying to do a connection pool in glassFish to a access database (.mdb), But I don't know how to do this.
I do connection pool to MySql server, coping the MySQL connector jar file into /lib ...
4
votes
1answer
301 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 ...
0
votes
1answer
140 views
ASP.NET SQL - Pool - timeout
I've a problem with Asp.net and SQL.
I have many timeout errors from connection pool.
All connections are used within using block so they are correctly closed.
In the connectionSting I have : ...
1
vote
1answer
174 views
apache commons pool - how to use a factory that takes arguments
I am trying to use apache commons pool to create a pool of 'objects'. Since I already have an object factory which takes a string type argument and create a right type of object I want to use this ...
5
votes
1answer
137 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 ...
1
vote
1answer
306 views
JBoss AS7: How to read datasource pool statistics with JMX
In JBossAS4, the MBean jboss.jca.ManagedConnectionPool allows to access, e.g., the number of used and the number of available connections of a data source. This MBean is no longer available in ...


