Top "Object-pooling" questions

The object pool pattern is a software creational design pattern that uses a set of initialized objects kept ready to use – a "pool" – rather than allocating and destroying them on demand.

What is Object Pooling in Java?

What is object pooling and what is a weak object reference ? How can we implement them using Java?

java object-pooling
Can't find a modern Implementation of Object Pool in Java

I'm looking for a modern implementation of an object pool in Java. I can see the apache commons one, but …

java multithreading object-pooling
How does one manage object pooling in Spring?

It's my understanding that in Spring, all objects are treated by default as singletons. If singleton is set to false, …

java spring spring-mvc aop object-pooling
Does this basic Java object pool work?

Does the following basic object pool work? I have a more sophisticated one based on the same idea (i.e. …

java concurrency object-pooling
Object pool vs. dynamic allocation

When should one prefer object pool over dynamically allocated objects? I need to create and destroy thousands of objects per …

c++ memory-management object-pooling
How to throttle webservice calls in a Java web application

My requirement is very simple to understand. I want to call a web service from my Java web application with …

java tomcat6 throttling object-pooling
Is there a general-purpose object pool for .NET?

I have a class that is expensive to construct, in terms of time and memory. I'd like to maintain a …

c# .net object-pooling