Introduction

PooliT is a Java object pooling library capable of pooling any type of Java object. Pooling objects can increase program performance and avoid the overhead of object creation. Good candidates for pooling are classes that have costly instantiation routines, like database connections or sockets. By conserving and re-using these objects, you save processor cycles creating new objects and also alleviate the garbage collector from having to reclaim them up after use.

PooliT is licensed under a BSD-style opensource license. Please read the LICENSE file included with PooliT for details.

NOTE: This project is no longer maintained. There are other open source projects that offer richer features. This project page remains as an archive.