Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React.js app using up a lot of memory ( almost double the original implementation )

I recently ported a heavy page to React. I've kept the html almost identical. The main difference being that, earlier, the server rendered html was directly given to the browser and now, the react rewrite pulls json via a server side API and uses React to manage the DOM.

I've seen heap snapshots for the earlier implementation going up to 55 MBs. For the same data, the heap snapshot for the React.js implementation comes to around 100+ MBs(almost double)

Chrome dev tools heap snapshot screenshot

I understand that the json data held in memory will contribute to some increase in the memory consumed. But, when I examined the heap snapshot, I see that around 60% of the retained size is due to some objects whose retaining path contain deleteAllListeners > .... > unmountComponentAtNode . I am trying to understand what that means in terms of reducing the memory used.

Also, could the "data-reactid" attributes added by React to the DOM contribute to a non-negligible increase in memory consumption ?

This question has some more details that might help.

like image 754
letronje Avatar asked Feb 10 '15 14:02

letronje


People also ask

How much RAM does react js use?

I'd strongly recommend to buy more RAM if possible, otherwise your best bet is to use your mobile phone for browsing as much as possible (googling and stuff). 4GB RAM should be able to handle VSCode and NPM just fine.

What causes memory leak reaction?

Memory leaks in React applications are primarily a result of not cancelling subscriptions made when a component was mounted before the component gets unmounted. These subscriptions could be a DOM Event listener, a WebSocket subscription, or even a request to an API.


1 Answers

React is using something called Virtual DOM. Basically it constructs alternative DOM tree in memory, in addition to the existing browser DOM tree, but to perform efficient updates it has to keep last displayed Virtual DOM tree in memory, so it can generate fast and efficient updates to the browser DOM tree.

From details of second question, I understand that you have an infinite scroll, where you basically add new components (without removing new ones) when user scrolls down the page. So this should be the source of increased memory usage (since now you have data + virtual dom in memory, compared to the previous solution)

The way it fix it is to render only components which are actually visible to the user, you can try to use react-list, or implement your own component for this.

like image 125
jusio Avatar answered Oct 02 '22 14:10

jusio