I have a dashboard application updating multiple charts at a given interval. My first thought was to update the data in the store, and then let all the charts feed from there.
But can this lead to a memory leak? Because Redux creates a new store every time the data changes and the old ones are saved. Will data ~ 2 MB in size be accumulated every second and application failure?
An alternative that I see is storing data in a local state (using setState). I hope some more experienced React / Redux developers can advise me on this. Thank!
source
share