Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
bergerlu
Partner - Contributor
Partner - Contributor

Mashup Visualization API memory leak

Hello,

Consider the code below. If I put this in a loop, we clearly get a memory leak. The JS heap size doesn't go down even after a forced garbage collection. You can also see the dom nodes going up.

The close() method doesn't seem to be releasing memory properly. Is this a known issue ?

leak.png

 

app.getObject(containerId, objectId, options).then(model => {
   model.close();
});

 

Labels (3)
0 Replies