What are object pooling and connection pooling and difference?
Answer Posted / guest
Connection Pooling:-
-Creation is on the same thread, so if there is nothing in
the pool, a connection is created on your behalf.
-There is nothing like minimum value or maximum value.
Object pooling :-
-The pool might decide to create a new object. However, if
you have already reached your maximum, it instead gives you
the next available object. This is crucial behavior when it
takes a long time to create an object, but you do not use it
for very long.
-We can set minimum and maximum values of object pooling.
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Which namespace is require to used XML in .NET?
What is Event Bubbling in .NET?
State the differences between the dispose() and finalize().
What is the difference between response.write & response.output.write?
How will you load an assembly which is not referenced by current assembly?
What's wrong with a line like this? Datetime.parse(mystring);
What is deferred execution vs. Immediate execution in linq?
Name the classes that are introduced in the system.numerics namespace.
Explain what is the difference between a class and an object, and how do these terms relate to each other?
Please explain what do the terms “boxing” and “unboxing” mean?
Difference between user groups and code groups
Tell about your technical profile ?
What does jit compilation do in .net?
Explain me what is the .net framework and how does it work?
Explain different types of html, web and server controls.