Tags: #object_pool
https://medium.com/@municode/using-object-pools-and-placement-new-to-simplify-memory-management-36daeef86bb6#.jpbw1oxz3
https://medium.com/@municode/using-object-pools-and-placement-new-to-simplify-memory-management-36daeef86bb6#.jpbw1oxz3
Medium
Using object pools and placement new to simplify memory management
In modern C++, you tend to use unique_ptr and shared_ptr to manage the lifecycle of objects. If you have cycles, you may have to throw in…