---
title: "Explain object pooling?"  
description: "Explain object pooling?"  
author: "Sushant Mishra"  
published: 2017-07-11  
updated: 2020-09-22  
canonical: https://www.mindstick.com/interview/23278/explain-object-pooling  
category: "c#"  
tags: ["asp.net"]  
reading_time: 2 minutes  

---

# Explain object pooling?

In asp.net object pooling tries to keep a pool or group of storing a group of objects in memory or it is nothing we can say that it is a container of object that can be reused later as needed this reduces the load of object to great extent. 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 collection of connections and threads. Pooling helps in minimizing the use of system resources, improves system scalability, and performance.

## Answers

### Answer by Sushant Mishra

In asp.net object pooling tries to keep a pool or group of storing a group of objects in memory or it is nothing we can say that it is a container of object that can be reused later as needed this reduces the load of object to great extent. 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 collection of connections and threads. Pooling helps in minimizing the use of system resources, improves system scalability, and performance.


---

Original Source: https://www.mindstick.com/interview/23278/explain-object-pooling

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
