-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't notify subscribers when after action state hasn't changed, add test #4627
Conversation
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 32becea:
|
5f8f589
to
32becea
Compare
Hi! I recognize your username from some recent discussions in the React-Redux repo. This is actually an intentional design decision, and not something we will be changing: However, you can implement this same logic as a Redux store enhancer, and add it to your own store in your app. I'll also note that React-Redux should actually already be skipping all store subscription / selector checks when the root state has not changed. If it isn't, that seems like a bug and we should investigate that separately. (I'll also note that RTK's |
Hi @markerikson. I checked link you have sent, I totally agree with it and actually my change even follows to what it says:
Also, I've came exactly from And I tested it with my udpate - it stopped reevaluating selectors when state is not changed. |
As for the layer where to fix this issue, it makes sense to me that it is better to remove the root cause of a problem which is here. I don't understand what lies beyond that design decision to notify subscribers when state hasn't changed considering that we don't pass state and action to the subscriber. |
Hmm. It used to bail out. Maybe we lost something in the transition to I'm not questioning whether the change here makes a difference. I'm saying it's a piece of core behavior we're not going to alter, and that it can be overridden at the enhancer level. |
Filed reduxjs/react-redux#2089 and I'll try to look at it soon. |
name: Optimization of subscriptions
about: Performance
PR Type
Does this PR add a new feature, or fix a bug?
No.
Why should this PR be included?
Problem
Up to 50% of all dispatched actions in the apps that use
redux-saga
orredux-thunk
could be ones that don't change the redux state but start some async logic.Current implementation notifies subscribers for each such action even if state hasn't changed, causing all active selectors to be reevaluated.
In huge apps there can be hundreds of subscribed selectors and dozens of actions per second, so this leads to additional CPU usage for no good reason.
Solution
Don't notify subscribers when action did not change the state.
Can it break existing code?
As far as I can see, the only reason to subscribe to the store is to get the new state using store.getState(). There is no sense in subscribing to get the called action because there is no way to get the latest action called from subscription. So it should not break any existing code.
But I would vote for raising major version here.
Checklist
No, as far as I know.