Memory leak in dynamic rendering
See original GitHub issueHey. I ran into a memory leak issue when drawing a list. My application dynamically retrieves the shapes from the server and renders them using a v-for directive. After some time, the memory consumption is about 2 gigabytes and the browser crashes. When monitoring performance, you can see that there are a huge number of undeleted nodes and event subscriptions.
I give a part of the code at which there is a leak
<v-group>
<v-rect v-for="plate in processedPlates" :key="plate.id" :config="plate.config"></v-rect>
</v-group>
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (6 by maintainers)
Top Results From Across the Web
Hunting memory leaks in a server side rendered React ...
Our memory leak was caused by reselect and with the bad usage of styled-components, both problems were found by using Chrome DevTools. Backstory....
Read more >Exploring Memory Leaks in Flutter from the Rendering Process
This article analyzes the memory allocation of Flutter, explains the rendering process, and proposes a solution for memory leaks based on ...
Read more >Memory leak - Wikipedia
Typically, a memory leak occurs because dynamically allocated memory has become unreachable.
Read more >Vue memory leak when rendered components are removed
My issue was solved by changing the way of passing my object. By changing the property to a number, in my case an...
Read more >Memory Leak when dynamically assigning Collision Mesh ...
Edit: The reported issue about memory leak is when you remove rigidbody component from the entity. It should get destroyed fine, if you...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Fixed with the last release
vue-konva@2.0.6
. Try it.Thanks for the report!