-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Description
I'm submitting a...
[ ] Regression (a behavior that used to work and stopped working in a new release)
[ ] Bug report
[x] Feature request
[ ] Documentation issue or request
What is the current behavior?
createSelector creates memoized selectors that improve performance of the application but no insight into when it recomputes.
Expected behavior:
In my application I have about 50 different selectors. Many selectors read across multiple slices of the app state. There's also a lot of composition of selectors.
Ideally I would like to know the following things about my selectors:
-When does a given selector recompute?
-How much time does a selector take to run?
This will help me optimize my selectors.
Reactions are currently unavailable