top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How does object pooling and connection pooling differ?

0 votes
232 views
How does object pooling and connection pooling differ?
posted Nov 24, 2014 by Roshan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

In Object pooling, you can control the number of connections. In connection pooling, you can control the maximum number reached. When using connection pooling, if there is nothing in the pool, a connection is created since the creation is on the same thread. In object pooling, the pool decides the creation of an object depending on whether the maximum is reached which in case if it is, the next available object is returned. However, this could increase the time complexity if the object is heavy.

answer Nov 24, 2014 by Manikandan J
...