You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wonder if there'd be some way to use this within React-Redux.
Like, what if we had an alternate Subscription implementation that wrapped store.getState() with this autotracking proxy and passed that around, then tracked which callbacks accessed the state and got smarter about when to re-run those?
I'm sure there's a ton of caveats here, such as nested subscriptions and connect, bundle size, perf overhead, etc.
Just saw this issue now :) Please take a look at #2043 where I describe a potential way to use SolidJS's stores to avoid rerunning irrelevant selectors.
There's some strongly-related work from the Causal team here, where they've built their own store subscriptions and are trying to narrow down how many selectors run based on ordering:
https://github.com/simonihmig/tracked-redux uses autotracking to selectively update UI components that depend on specific changed pieces of state.
I already ported that logic to Reselect, in reduxjs/reselect#605 .
I wonder if there'd be some way to use this within React-Redux.
Like, what if we had an alternate
Subscription
implementation that wrappedstore.getState()
with this autotracking proxy and passed that around, then tracked which callbacks accessed the state and got smarter about when to re-run those?I'm sure there's a ton of caveats here, such as nested subscriptions and
connect
, bundle size, perf overhead, etc.related, yet another "Redux perf is hard at scale" talk: https://twitter.com/zeigenvector/status/1668713918049525760
The text was updated successfully, but these errors were encountered: