An Intro to Pooling & Custom Allocators: `operator new`

In this beginner friendly article we dive into the memory internals. For the matter of this blog I will use the new and delete keywords below to showcase what is going on under the hood. Though, always rememeber to use RAII principles (unique ptr in that case). The manual management of the underlying memory is not the safe way to do it but could be used in more advanced topics. ...

May 4, 2026 · 3 min · 433 words