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
Part of the reason for making ChangeRequests is to make Parcels more performant, but hitting the reducer less often. There are two kinds of caching we can add
Cache calls to ChangeRequest.data() and invalidate the cache after every dispatch step
Pre-cache data after every dispatch step
The text was updated successfully, but these errors were encountered:
Precache after every dispatch step is unnecessary for now, the reducer is more performance that it used to be, and the perf penalty for people not using modifyChange functions is perhaps a little too steep.
Part of the reason for making ChangeRequests is to make Parcels more performant, but hitting the reducer less often. There are two kinds of caching we can add
ChangeRequest.data()
and invalidate the cache after everydispatch
stepdispatch
stepThe text was updated successfully, but these errors were encountered: