DennisvHest / MapMaven

Map Maven is an application for managing Beat Saber playlists, discovering new maps to play and to improve your Beat Saber skills.
GNU General Public License v3.0
10 stars 0 forks source link

Decrease memory usage #36

Closed DennisvHest closed 1 year ago

DennisvHest commented 1 year ago

Memory usage can sometimes go up to 1GB when there are many maps and playlists. This should be decreased.

DennisvHest commented 1 year ago

Theory: biggest memory waste came from playlist covers loaded via BeatSaberPlaylistLib being allocated on the large object heap. Large object heap memory is rarely freed, so after loading the playlists, this memory would stay.

Fixed by periodically compacting the large object heap.

Info