Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
8answers
7k views

C# Object Pooling Pattern implementation

Does anyone have a good resource on implementing a shared object pool strategy for a limited resource in vein of Sql connection pooling? (ie would be implemented fully that it is thread safe). To ...
11
votes
4answers
6k views

Is DBCP (Apache Commons Database Connection Pooling) still relevant?

The JDBC 3.0 spec talks about Connection (and Prepared Statement) pooling. We have several standalone Java programs (i.e. we are not using an application server) that have been using DBCP to provide ...
10
votes
1answer
211 views

Best Method of Channel Pooling in Google App Engine

It seems the only way to make the GAE Channel API financially viable is to implement some kind of pooling mechanism (one of the senior app engine product managers even told me this when I emailed them ...
7
votes
4answers
4k views

Why pool Stateless session beans?

Stateless beans in Java do not keep their state between two calls from the client. So in a nutshell we might consider them as objects with business methods. Each method takes parameters and return ...
5
votes
5answers
383 views

When to go for object pooling [c#]?

When to go for object pooling using c#? Any good ex... What are the pro's and con's of maintaining a pool of frequently used objects and grab one from the pool instead of creating a new one?
4
votes
1answer
2k views

npgsql Leaking Postgres DB Connections: Way to monitor connections?

Background: I'm moving my application from npgsql v1 to npgsql v2.0.9. After a few minutes of running my application, I get a System.Exception: Timeout while getting a connection from the pool. The ...
3
votes
3answers
95 views

PHP pooling functionality (not just database connections)

Is it possible to pool data or functionality in PHP? The amateur-ish PHP code that I write wakes up to handle a response, loads functions, opens database connections, create objects, initialises ...
3
votes
3answers
578 views

Oracle OLEDB Connection Pooling and Invalid Connections

We are using ADO to access Oracle 10g release 2, Oledb provider for Oracle 10g. We are facing some issue with the connection pooling. The database reside on the remote machine and connection pooling ...
3
votes
3answers
464 views

Is there a standard way of implementing a proprietary connection pool in .net?

Is there a standard connection pooling model (or API) similar to that used by the data providers in .net that I could use to implement my own connection pool? I ask because I have a requirement to ...
2
votes
3answers
54 views

C# How to “verify” that new connections are actually getting reused from connection pool

I have a simple c# code in which I am trying to open and close connections multiple times. How can I ensure that my new connections are coming from connection pool and that it is not hitting the ...
2
votes
0answers
68 views

Pooling Web Workers

Does anyone know of good patterns/libraries for pooling Web Workers? I want to be able to do something like the following: Set a maximum number of threads. The first time I ask for a Worker it ...
2
votes
1answer
66 views

WCF Proxy Pooling - Is it worth it?

Is it really worth pooling WCF proxy clients, or is it better to instanciate a new proxy on every call to a given method? By the way, does anyone have a pooling pattern for this kind of proxies which ...
2
votes
3answers
320 views

Implementing Connection Pooling : Java

In one of the interviews that I faced,I was asked to implement connection pooling. So approach was this: Create a List or HashMap Create predefined number of connections Add them to the collection. ...
2
votes
2answers
186 views

What could cause that performance improvement? Time in GC, Pooling

Our multithreaded application does a lengthy computational loop. On average it takes about 29 sec for it to finish one full cycle. During that time, the .NET performance counter % time in GC measures ...
2
votes
1answer
212 views

Database Connection Settings Retrieved From a JNDI Connection Pool

I have Hosted a data source on the websphere server and i wanted make use of that datasource through my application clients. After retrieving the database connection from the JNDI datasource i am ...
2
votes
1answer
197 views

Spring ObjectPooling & thread blocking

I have a Spring CommonsPoolTargetSource defined for a bean. I'm trying to understand how pooling works, and when an object is returned the the pool. Specifically, if I have a worker, which takes a ...
2
votes
1answer
2k views

spring connection pooling issue

I'm not experienced in Java and Spring. I try to write a program that uses JdbcTemplate for Data access. I use DBCP pooling, here it is: <bean id="myDataSource" ...
2
votes
6answers
296 views

Managing multiple-processes: What are the common strategies?

While multithreading is faster in some cases, sometimes we just want to spawn multiple worker processes to do work. This has the benefits of not crashing the main app if one of the worker crashes, and ...
2
votes
4answers
683 views

How is that instance pooling with EJBs can improve performance?

How is that instance pooling with EJBs can improve performance? Wouldn't you be able to accomplish the same performance just with threads like a java servlet? Or perhaps instance pooling with EJBs ...
2
votes
2answers
466 views

Shared Object Pool without Thread.Sleep?

I have developed an "object pool" and cannot seem to do it without using Thread.Sleep() which is "bad practice" I believe. This relates to my other question "Is there a standard way of implementing a ...
2
votes
5answers
3k views

Connection pooling with Java and MySQL in Tomcat web application

I recently wrote and deployed a Java web application to a server and I'm finding an unusual problem which didn't appear during development or testing. When a user logs in after so long and goes to ...
1
vote
1answer
95 views

Python MySQL connection pooling

I've looked through stackoverflow and can see some oldish posts on this and wondered what the current thinking is about pooling connections in Python for MySQL. We have a set of python processes ...
1
vote
0answers
44 views

Database Connections Timing Out (Connection Pooling On Tomcat)

My dB connections are constantly timing out. I looked through some of the solutions people have offered to this, and have implemented them, but nothing has worked out till now. Any new thoughts, will ...
1
vote
1answer
172 views

postgres connection pooling library

Is any C/C++ library available for postgres connection pooling? I have looked at pgpool which is more like a middleware. I am looking for a library which can be coded into my application.
1
vote
0answers
47 views

Firefox request repetition on slow inet connection

i tried to search on mozillas buglist but that was not really successful, thats why im asking you guys. Do you ever heard that firefox is repeating the request when the server response takes to long ...
1
vote
4answers
2k views

Running out of DB connections!

I'm running a Spring/Hibernate connecting to MySQL setup using c3p0 as my connection pool. For some bizarre reason it runs out of connections when the system is under load (of course). The site was ...
1
vote
2answers
1k views

Http connection pooling using HttpClient

How to create a pool of connections using HttpClient. I have to make frequent connections to the same server.Is it worth creating such a pool. Is that possible to keep live connections and use it for ...
1
vote
2answers
74 views

who profits more from pooling? managed / unmanaged?

Having two similar applications: one managed and the other unmanged. Both utilizing a heavy allocation pattern for large objects. I.e. they are requesting a lot of those objects in (long running) loop ...
1
vote
1answer
550 views

SQL Task in SSIS foreach loop — Max pool size was reached error

I am using a foreach loop in SSIS to iterate over the contents of a folder, executing a SQL Task for each file. When I do this, it works fine the first ~300 times through the loop, then it hangs and ...
1
vote
1answer
279 views

How does ADO.NET Connection Pooling work with .ASMX Web Services?

I've created an old-style .ASMX web service and would like to know how the built-in ADO.NET connection pooling works with it. The web service is not using a singleton pattern, so it is instantiated ...
1
vote
2answers
188 views

How Java-Feature multithreading returning result?

I am still learning about using Future and Callable in Java. Stumble into this question: Say I have class: TaskWorker implements Callable { public String id; public TaskWorker(String id) { ...
1
vote
2answers
143 views

Connection Pooling

May I know if the connection pooling is applicable also for the window base application and not just for web base? Please advice. Thanks
1
vote
0answers
342 views

WCF NetTcpBinding and load balancing

I have two instances of a WCF service exposing NetTcpBinding endpoints in the application tier, which are consumed by the application tier (heavy traffic website). I need to load balanced these ...
1
vote
2answers
406 views

ASP.NET connection pool question

Does the same connection string used on two different physical servers hosting different web applications that talk to the same database draw connections from the same connection pool? Or are pooled ...
1
vote
2answers
527 views

Object pooling: howto

I need to implement a pool of Sessions that are returned by an external system, so that I can reuse them quickly as soon as one is needed (creating a Session takes a while). I've worked with ...
1
vote
1answer
164 views

What is Apache Commons Pool close() behaviour

I've been looking to implement pooling in part of my application. I want to use the Commons Pool library but am slightly concerned about how the close() behaviour works. From looking at the javadocs ...
1
vote
4answers
555 views

Java Servlet Pooling

Servlets 101, under Tomcat 6: Could someone kindly point me to a good explanation of the best way to eg. create a Collection of expensive Foo objects at servlet startup time and stash them somewhere ...
1
vote
1answer
326 views

When using proxool, do I need to explicitly close every getConnection()?

I'm writing new DB connection code, and thought I'd try proxool as the connection pool implementer. Normally, a programmer would ensure that every DriverManager.getConnection(...) is followed by a ...
1
vote
1answer
332 views

db connection pool across processes

We have a client/server application that consists of multiple EXEs. The data access layer is on the same physical tier as the client in a library shared by our EXE modules. ODBC and OleDB connection ...
0
votes
1answer
21 views

What is good way of implementing an object pool in Camel

I have a few camel routes that call an external web service, i need to manage a session pool for this web service, keeping a few sessions open and reusing idle ones each time a camel route needs one. ...
0
votes
1answer
20 views

How to pooling the JMS connection in a standalone Java applications?

We are working on a IBM MQSeries application, and we use JMS API to operating the message. But we have a problem that the connection takes too much time, and we want to pooling the JMS connection, for ...
0
votes
0answers
14 views

Issues with Database Connection Pooling [in Python] using PySQLPool

I want to know how to make use of MySQL Connection Pool in PySQLPool. There is not much read me about it and there is hardly any documentation. The couple of things in the documentation suggest how ...
0
votes
1answer
37 views

Expired sessions in GenericObjectPool

I am using child object of org.apache.commons.pool.impl.GenericObjectPool for providing connections to web services (child of org.apache.axis2.client.Stub). How to setup the pool, so connections that ...
0
votes
0answers
103 views

Android Connection pooling

For implementing http connection pooling, I had gone through this link. After reading this I came to conclusion that making a single Http client object and connection manager with different request ...
0
votes
0answers
185 views

Bone CP a new jdbc connection pooling library

I experienced some weird problem using MySQL connection pool in resin application server. Earlier I used Connector-J supplied connection pool manager ...
0
votes
0answers
28 views

Enabling connection pooling results in Web Application hang

We have a .net web application. We are using ODP.NET method within our application to connect to oracle. We have configured the Connection String to use connection pooling parameters. This application ...
0
votes
1answer
687 views

The timeout period elapsed prior to obtaining a connection from the pool - but the pool is not full

I hate even bringing this up b/c there are so many hundreds of pages talking about this error dating back 7-8 years... However, I cant quite figure this out. I have a report service running on ...
0
votes
0answers
252 views

pingDatabase on Oracle driver is locked

I use JDK6.0, jboss5.1.0.GA & Oracle 10g. We use XADatasource supported by jboss. To prevent some pooling issue we configured to check whether connection is valid or not by adding ...
0
votes
3answers
186 views

Object pooling alternatives in Java

I know what is Object Pooling in Java I was keen to know if there are any better alternatives which can be used in an distributed environment, or specifically with server sockets and database ...
0
votes
1answer
223 views

Oracle Streams AQ. session.getQueue throwing AQOracleSQLException: Exhausted Resultset

Using Oracle Streams AQ in a multithreaded/multi-app environment I received an AQOracleSQLException: Exhausted Resultset after about 10 minutes of operation in one thread only. ...

1 2