Memoization in react (for example reselect) where thes memoized values are kept?

Viewed 205

Memoization in react (for example reselect) where thes memoized values are kept? Some cookie, local storage?

1 Answers

Reselect stores its memoized values in memory.

Here is reselect's defaultMemoize source code where the variable lastResult points to the last returned result.

Related