Re: [OT] RE: DBCP - ReapingObjectPool

2003-11-24 Thread Juan Ignacio Cidre
lto:[EMAIL PROTECTED] Sent: Monday, November 24, 2003 5:20 PM To: Jakarta Commons Developers List Subject: Re: DBCP - ReapingObjectPool Actually we already have something similar: AbandonedObjectPool. http://jakarta.apache.org/commons/dbcp/xref/org/apache/commons/dbcp/Abandone dObjectPool.html Many en

Re: DBCP - ReapingObjectPool

2003-11-24 Thread Juan Ignacio Cidre
I saw AbandonedObjectPool but it is deprecated and is in the DBCP. I was looking for an ObjectPool. I've extended GenericObjectPool with similar features. Here it is. I'm using this as the ObjectPool of a PoolingDataSource and is working perfectly well. note: TimestampedStackTrace is not gener

[OT] RE: DBCP - ReapingObjectPool

2003-11-24 Thread Mainguy, Mike
: Jakarta Commons Developers List Subject: Re: DBCP - ReapingObjectPool Actually we already have something similar: AbandonedObjectPool. http://jakarta.apache.org/commons/dbcp/xref/org/apache/commons/dbcp/Abandone dObjectPool.html Many enhancements are possible, I have been playing around the

DBCP - ReapingObjectPool

2003-11-22 Thread Juan Ignacio Cidre
I was needing an ObjectPool that 'remembers' the borrowed objects so it can recollect them if not returned after a while. Is there something like that arround? I've extended GenericObjectPool to have that functionallity. I can give it to the project if there is not a better option than mine. Si