What is object pooling

Showing Answers 1 - 8 of 8 Answers

raipurking

  • Mar 10th, 2006
 

Defination: A performance optimization based on using collections of pre-allocated resources, such as objects or database connections

With the advent of the .NET platform, writing code that pools objects and threads has become a simple task. By using the Threading and Collections namespaces, you can create robust object pooling applications. This could also be done by implementing COM+ interop interfaces into your code.

Gayathri

  • Apr 19th, 2006
 

I didn't understand waht is object pooling

  Was this answer useful?  Yes

Haritha

  • May 28th, 2006
 

hi lokesh,

 can u give an example for object pooling.

Thnx

  Was this answer useful?  Yes

prudhviram

  • Sep 14th, 2006
 

Object Pooling is a COM+ service that enables you to reduse the overhead of creating each object from scratch. When an object is activated, it is pulled from the pool.When the object is deactivated, it is placed back into the pool to await the request.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions