Improve Performance with Object Pool
In a former article I’ve shown the consequences of memory allocation and garbage collection. Object pool is a simple design pattern that can be used in order to solve both problems.
The Problem
Memory allocation is a slow process. …