Skip to content

building blocks

Memory Pool

Virtual memory1 allows programs to use more memory than physically available by mapping logical addresses to physical ones, with the heap being a region within virtual memory for dynamic memory allocation. Functions like malloc in C and new in C++ are used to allocate memory from the heap, with malloc providing raw allocation and new offering both allocation and initialization.

However, frequent memory allocations can lead to performance overhead and fragmentation, which is where memory pools come in. A memory pool pre-allocates a large block of memory and divides it into smaller chunks for reuse, improving efficiency, reducing fragmentation, and enhancing performance in systems with critical memory needs.

Thread Pool

A thread pool is a collection of pre-allocated threads that manage the execution of tasks in a concurrent system, improving efficiency by reusing threads instead of creating new ones for each task. In a producer-consumer model, the producer generates tasks, and the consumer threads in the pool handle their execution. This reduces the overhead of thread creation and destruction and optimizes resource management, making it ideal for high-concurrent environment like web servers or databases. The thread pool controls the number of concurrent threads, ensuring scalable and efficient performance, especially in systems with frequent or I/O-bound tasks.