![]() |
#1 |
Registered User
Join Date: Aug 2015
Posts: 434
|
What is Object Pooling?
keep a pool of objects in memory to be re-used later and hence it will reduce the load of object creation to a great extent. Whenever there is a request for a new object, the pool manager will take the request and it will be served by allocating an object from the pool. Pooling basically means utilizing the resources efficiently, by limiting access of the objects to only the period the client requires it.
__________________
Dentist in Delhi | Best Dentist in Ashok Vihar | Best Dentist in Shalimar Bagh | Best Prosthodontist in Delhi |
![]() |
![]() |
![]() |
#2 |
Registered User
Join Date: Sep 2013
Posts: 887
|
An object pool is a collection of a particular object that an application will create and keep on hand for those situations where creating each instance is expensive. A good example would be a database connection or a worker thread
|
![]() |
![]() |
![]() |
#3 |
Registered User
Join Date: Sep 2015
Posts: 240
|
Object pooling allows the sharing of instantiated objects.
__________________
Link Building Resources | Free SEO Tools List | Engravers Chennai | Engraving Chennai |
![]() |
![]() |
![]() |
#4 |
Registered User
Join Date: Sep 2015
Location: UK
Posts: 447
![]() |
Object pooling is an automatic service that allows a pool of active component instances to be maintained for usage by any requesting client.
Object pooling provides a repository of active and ready-made objects that may be used by clients requesting configured pooling components. Pool objects may be configured and monitored by specifying required options, such as pool size and time-out value for object creation. |
![]() |
![]() |
![]() |
#5 |
Registered User
Join Date: Jul 2015
Posts: 260
|
Object pooling is an automatic service that allows a pool of active component instances to be maintained for usage by any requesting client.
|
![]() |
![]() |
![]() |
#6 |
Registered User
Join Date: Aug 2015
Location: 2530 Yorktown apartment , Houston ,Texas 77056
Posts: 116
|
Pooling basically means utilizing the resources efficiently,by limiting access of the objects to only the period the client requires it.
Increasing utilization through pooling usually increases system performance. Object pooling is a way to manage access to a finite set of objects among competing clients. In other words,object pooling is nothing but sharing of objects between different clients. Since object pooling allows sharing of objects ,the other clients/processes need to re-instantiate the object(which decreases the load time), instead they can use an existing object. After the usage , the objects are returned to the pool.
__________________
Lemosys Infotech is an ISO Certified Company having its operations in India & US. We offer best IT Services that includes Website Development, Web Designing, Mobile Application development, Search engine optimization & Testing. Call us to Hire our dedicated developer. |
![]() |
![]() |
![]() |
#7 |
Registered User
Join Date: Aug 2015
Posts: 235
|
good information thanks for sharing.
|
![]() |
![]() |
![]() |
#8 |
Registered User
Join Date: Dec 2015
Posts: 277
|
Object pooling is a one type of collection of particular object that we can use create an object and keep hand for those situation where creating each instance is expensive.
|
![]() |
![]() |
![]() |
#9 |
Registered User
Join Date: Nov 2015
Posts: 127
|
An object pool is any collection of object which are recycled, rather than recreated each time they are needed.
|
![]() |
![]() |
![]() |
#10 |
Registered User
Join Date: Aug 2015
Posts: 235
|
The object pool pattern is a software creational design pattern that uses a set of initialized objects kept ready to use – a "pool" – rather than allocating and destroying them on demand. A client of the pool will request an object from the pool and perform operations on the returned object.
|
![]() |
![]() |
![]() |
#11 |
Registered User
Join Date: Dec 2015
Posts: 157
|
The idea of object pooling is similar to the operation of your local library. When you want to read a book, you know that it's cheaper to borrow a copy from the library rather than purchase your own copy. Likewise, it is cheaper (in relation to memory and speed) for a process to borrow an object rather than create its own copy. In other words, the books in the library represent objects and the library patrons represent the processes. When a process needs an object, it checks out a copy from an object pool rather than instantiate a new one. The process then returns the object to the pool when it is no longer needed.
|
![]() |
![]() |
![]() |
#12 |
Registered User
Join Date: Aug 2015
Location: Junction Business House, Level 2, Suite 203, Melbourne VIC 3182
Posts: 504
|
Object pooling provides a repository of active and ready-made objects that may be used by clients requesting configured pooling components. Pool objects may be configured and monitored by specifying required options, such as pool size and time-out value for object creation.
|
![]() |
![]() |
![]() |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
What is the meaning of object oriented in programming ? | sana8745 | Programming General | 5 | 03-24-2015 10:15 PM |
object tracking systems | frank00 | General Discussion | 3 | 12-25-2013 09:40 PM |