Object pooling is a concept of storing a pool (group) of
objects in memory that can be reused later as needed. Whenever, a new object is
required to create, an object from the pool can be allocated for this request;
thereby, minimizing the object creation. A pool can also refer to a group of
connections and threads. Pooling, therefore, helps in minimizing the use of
system resources, improves system scalability, and performance.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Object pooling is a concept of storing a pool (group) of objects in memory that can be reused later as needed. Whenever, a new object is required to create, an object from the pool can be allocated for this request; thereby, minimizing the object creation. A pool can also refer to a group of connections and threads. Pooling, therefore, helps in minimizing the use of system resources, improves system scalability, and performance.