Explain object pooling?



Explain object pooling?..

Answer / vadivel

In computer programming, a Object pool is a software design
pattern. An object pool is a set of initialised objects
that are kept ready to use, rather than allocated and
destroyed on demand. A client of the pool will request an
object from the pool and perform operations on the returned
object. When the client has finished with an object, it
returns it to the pool, rather than destroying it. It is a
specific type of factory object.

Object pooling can offer a significant performance boost;
it is most effective in situations where the cost of
initializing a class instance is high, the rate of
instantiation of a class is high, and the number of
instantiations in use at any one time is low.

Is This Answer Correct ?    7 Yes 0 No

Post New Answer

More COM DCOM Interview Questions

What are the different compatibility types when we create a COM component?

1 Answers   TCS,


Explain JIT activation?

1 Answers  


what is oops

11 Answers   Accenture,


What kind of components can be used as DCOM servers?

1 Answers  


What is a moniker ?

3 Answers  






How can would you create an instance of the object in COM

2 Answers  


what is far pointer and what are the use of far poiter in com/dcom ?????

2 Answers   HCL,


Do COM keep track of all the object references(Accounting)?

3 Answers   Microsoft,


Explain object pooling?

1 Answers   HCL,


Explain Futures of COM?

0 Answers  


Suppose we have object b and aggregated object c (in- proc server), created by b. Can you access any interface of b from c? What?s the difference between aggregated and contained objects?

0 Answers  


Let?s assume we have object B and aggregated object C (in- proc server), created by B. Can you access any interface of B from C? What?s the difference between aggregated and contained objects?

3 Answers  


Categories