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 |
how do you know it is general dll or com dll
Define and explain about COM?
Define and explain COM?
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?
Explain Futures of COM?
where can i use pmcmd commands of informatica
What kind of components can be used as DCOM servers?
Can I use com components from .net programs?
what is far pointer and what are the use of far poiter in com/dcom ?????
What is a moniker ?
What should QueryInterface functions do if requested object was not found?
How to Use structs in COM interfaces when Automation compatibility is not an issue?