RE: Threading problems in connection pooling - suggested code change

2007-03-18 Thread Elli Albek
Good point on access to configuration variables. I am thinking of the local variables in the class as two types: Configuration, and runtime. The configuration variables do not change in our application, therefore access was not always synchronized. This will be a problem for applications that wish

Threading problems in connection pooling - suggested code change

2007-03-16 Thread Elli Albek
Hi, * see code below I use DBCP, and in our multithreaded performance test of DAOs we found that multiple threads are basically blocking on the connection pool class, either waiting to get a connection or to return a connection. In the test most threads were idle blocking on the DBCP pool, and not

RE: Fast collections thread safe?

2001-11-27 Thread Elli Albek
our thoughts. Thanks Vasanth -----Original Message- From: Elli Albek [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 27, 2001 12:05 AM To: Jakarta Commons Developers Subject: RE: Fast collections thread safe? One more iteration. Check out the link, I think we have exactly the same problem with fast

RE: PropertyUtils & dot notation

2001-11-26 Thread Elli Albek
We are having exactly the same problem. Our suggestion was to have some plug in the action Servlet to specify the classes that will handle the beans mapping, so we can use our own. This can be done either by sub classing the action Servlet or by having a service provider API that will allow you t