1 comment

[ 3.0 ms ] story [ 10.2 ms ] thread
For those unfamiliar with the concept, it is essentially just a library for memoizing the response values from selectors/computed values. The memoizing functions are composable, allowing arbitrarily complex structures of computed values which will only recompute when any of their dependencies have changed.

It is meant for usage with immutable data structures of any kind, though the most common use case is usage in reference to an immutable redux store.

Please feel free to ask any questions.