Is it a good idea to keep huge data object in a single store of Redux?
问题 As Redux provides store for keeping all application data in one place, Is it good practice to keep data in single large object ? What if we have thousands of records and their data which is large in size, will it affect on application performance? 回答1: This is a good place to start Redux Performance For maximum rendering performance in a React application, state should be stored in a normalized shape , many individual components should be connected to the store instead of just a few, and