Hello!
I recently discovered Webware and I think it's great. However, some of the stuff outside of webkit is not so great. Have a look at the DB Connection Pool Manager in MiscUtils to see what I mean... it's a very basic implementation of a DB connection pool, not to mention that it is not thread-safe. So I wrote my own and I was hoping it to be a part of the Webware distribution. It has the following features:
- thread-safety (emulates level 2 of the DB API)
- add connections to the pool on request up to a specified maximum
- clients are put to wait in a queue when there are no available connections
- housekeeping thread running on low priority cleans unreleased and temporary connections
I've made a couple of tests and it works fine.
Who should I address to? Thank you.

Reply via email to