Object Pool Usage

So, I'm investigating Object Pools, and I think I'm not getting something. The documentation isn't great, hence the question We have a lot of small objects that we will use throughout our application's lifespan, and I'm trying to see if ObjectPool is a good fit for us. Heck, I'm just trying to look at performance of it in general. So, I have the following code: -------------------------------------------------------------- void testNormal() { common::Timer t; t.start(); for(int i = 0; i < MAX_NUM_TESTS; i++) { testClass t; t.doWork(); } t.stop(); std::cout << "No Pool: Creating " << MAX_NUM_TESTS << " took " << str_cast(t.getTotalElapsedTime()) << std::endl; } void testPool() { common::Timer t; t.start(); boost::object_pool<testClass> pool; for(int i = 0; i < MAX_NUM_TESTS; i++) { testClass::ptr tc = pool.construct(); tc->doWork(); } t.stop(); std::cout << "Pool: Creating " << MAX_NUM_TESTS << " took " << str_cast(t.getTotalElapsedTime()) << std::endl; } int main(int argc, char* argv[]) { testNormal(); testPool(); return 0; } ------------------------------------------------ When run, I am getting: No Pool: Creating 500000 took 00:00:00.187785 Pool: Creating 500000 took 00:00:00.281679 So, I guess I'm not understanding the advantage of the pools. Could someone write/modify my example to make it make more sense? Thanks --dw

AMDG david.weber@l-3com.com wrote:
So, I'm investigating Object Pools, and I think I'm not getting something. The documentation isn't great, hence the question
We have a lot of small objects that we will use throughout our application's lifespan, and I'm trying to see if ObjectPool is a good fit for us. Heck, I'm just trying to look at performance of it in general.
So, I have the following code:
--------------------------------------------------------------
void testNormal() { common::Timer t; t.start();
for(int i = 0; i < MAX_NUM_TESTS; i++) { testClass t; t.doWork(); } t.stop();
std::cout << "No Pool: Creating " << MAX_NUM_TESTS << " took " << str_cast(t.getTotalElapsedTime()) << std::endl; }
void testPool() { common::Timer t; t.start(); boost::object_pool<testClass> pool;
for(int i = 0; i < MAX_NUM_TESTS; i++) { testClass::ptr tc = pool.construct(); tc->doWork(); }
t.stop(); std::cout << "Pool: Creating " << MAX_NUM_TESTS << " took " << str_cast(t.getTotalElapsedTime()) << std::endl; }
int main(int argc, char* argv[]) { testNormal(); testPool();
return 0; } ------------------------------------------------
When run, I am getting:
No Pool: Creating 500000 took 00:00:00.187785 Pool: Creating 500000 took 00:00:00.281679
So, I guess I'm not understanding the advantage of the pools. Could someone write/modify my example to make it make more sense?
If you can use the stack as in testNormal, you shouldn't use Boost.Pool. If you want to test the speed of object_pool, you should compare it to heap allocation. void testNormal() { common::Timer t; t.start(); for(int i = 0; i < MAX_NUM_TESTS; i++) { std::auto_ptr<testClass> t(new testClass); t->doWork(); } t.stop(); std::cout << "No Pool: Creating " << MAX_NUM_TESTS << " took " << str_cast(t.getTotalElapsedTime()) << std::endl; } In Christ, Steven Watanabe

On Wed, Sep 23, 2009 at 7:42 AM,
So, I'm investigating Object Pools, and I think I'm not getting something. The documentation isn't great, hence the question
We have a lot of small objects that we will use throughout our application's lifespan, and I'm trying to see if ObjectPool is a good fit for us. Heck, I'm just trying to look at performance of it in general.
...
So, I guess I'm not understanding the advantage of the pools. Could someone write/modify my example to make it make more sense?
Using pool to allocate a local object will not be performant. Local objects get to sit on the stack, which is the fastest memory you have available. A pool should be used in places where you would have used the heap -- that is, std::allocator, new, or malloc -- to allocate/free many objects of equal size. Modify your non-pool code to use new to see the difference. -- Cory Nelson http://int64.org

I should add one interesting thing :) Try to use fragmented memory. This is done by allocating say 100 objects, then deallocating 50 of them (odd ones). Then you will see how pool is powerful comparing to new.
participants (4)
-
Cory Nelson
-
david.weber@l-3com.com
-
Roman Shmelev
-
Steven Watanabe