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
When a reducer (e.g. School) uses a sub-state reducer (e.g. Students) it might be necessary to transform the Delta state to improve performance.
For example, if the Delta is a List<Student> and we need the sub reducer to check each student in its given state and look up that student in the Delta then it would be better if we could first transform the List<Student> to a Dictionary<int, Student> for quick lookup.
The text was updated successfully, but these errors were encountered:
When a reducer (e.g.
School
) uses a sub-state reducer (e.g.Students
) it might be necessary to transform the Delta state to improve performance.For example, if the Delta is a
List<Student>
and we need the sub reducer to check each student in its given state and look up that student in the Delta then it would be better if we could first transform theList<Student>
to aDictionary<int, Student>
for quick lookup.The text was updated successfully, but these errors were encountered: