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 |
What are the purposes of AddRef, Release and QueryInterface functions
Which namespace do the classes, allowing you to support COM functionality, are located?
Explain JIT activation?
What is dcom?
How does a DCOM component know where to instantiate itself?
How to create an instance of the object in COM?
How do you make a NET component talk to a COM component?
Differentiate normal DLL to COM DLL
What is a moniker ?
hi,I have applied for NIC test plz if any one have test paper pattrn plz send me on "mn_mayank38@yahoo.co.in"
What is In-proc?
Explain Futures of COM?