Skip to content

Instantly share code, notes, and snippets.

@mrousavy
mrousavy / MEMOIZE.md
Last active May 21, 2024 08:06
Memoize!!! 💾 - a react (native) performance guide
In computing, memoization or memoisation
is an optimization technique used primarily
to speed up computer programs by storing
the results of expensive function calls and  
returning the cached result when the same
inputs occur again.                                         
                                                     — wikipedia