Object Pool use case
After the Object Pool article went online, I was asked this on Facebook:
What I take from here is 2 fold:
- The one
After the Object Pool article went online, I was asked this on Facebook:
What I take from here is 2 fold:
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.
Memory allocation is a slow process. …
Javascript developers usually don’t care much about memory management. The JS engine …
My talk from CodeTalks 2019 is live. You can watch it here:
In this talk I go over 3 design patterns I’ve used in production in order to enhance performance in Javascript: Dirty flag, data locality and Object pool.
Some …