| C#.Net - How does object pooling and connection pooling differ? 
										- May 13, 2009 at 18:40 PM by Amit SatputeHow does object pooling and connection pooling differ?In Object pooling, you can control the number of connections. In connection pooling, you can control the maximum number reached. When using connection pooling, if there is nothing in the pool, a connection is 
									created since the creation is on the same thread. In object pooling, the pool decides the creation of an object depending on 
									whether the maximum is reached which in case if it is, the next available 
									object is returned. However, this could increase the time complexity if the 
									object is heavy.
								 C#.Net - How does object pooling and connection pooling differ? 
										- June 04, 2009 at 15:00 PM by Shuchi GauriObject pooling allows you to control the number of connections being used, 
									whereas connection pooling allows the control of maximum number reached. 
 Also read An object pool is a container of objects that holds a list of other objects that 
									are ready to be used.......
									 using System;
									using System.Collections;.......
 The request for the creation of an object is served by allocating an object from 
									the pool....... 
											
									 |