Develop object pools
Object pools provide an effective means of improving application performance at run time, by supporting the reuse of multiple instances of objects.
Subtopics
- Use object pools
An object pool helps an application avoid creating new Java objects repeatedly. Most objects can be created once, used and then reused. An object pool supports the pooling of objects waiting to be reused.
Administer object pools