Can a Redux store lead to a memory leak?

前端 未结 4 2441
囚心锁ツ
囚心锁ツ 2021-02-20 00:55

I have a dashboard application with several charts getting updated on a set interval. My first thought was to update the data in the store and then let all charts feed from ther

4条回答
  •  -上瘾入骨i
    2021-02-20 01:44

    It is not recommended to pile up 2MB of data /second on the user's browser. Redux store is a client-side on the browser. The other part of the question regarding memory leaks don't happen as far as I know. Some useful links are:

    Diagnose memory leaks using Chrome devtools

    Four types of memory leaks to watch out for

提交回复
热议问题