# Garbage Collection in Redux Applications

DevFeed: [Garbage Collection in Redux Applications](<https://devfeed.tech/articles/garbage-collection-in-redux-applications-2035.md>)

Original publisher: [Read original article](<https://developers.soundcloud.com/blog//garbage-collection-in-redux-applications>)

Published: 2019-01-24T00:00:00Z

Content type: tutorial

Language: en

Sources: [SoundCloud Backstage Blog](<https://devfeed.tech/sources/soundcloud-backstage-blog.md>)

Topics: [Redux](<https://devfeed.tech/topics/redux.md>), [Xbox](<https://devfeed.tech/topics/xbox.md>), [Memory Leaks](<https://devfeed.tech/topics/memory-leaks.md>), [React](<https://devfeed.tech/topics/react.md>), [Universal Windows Platform](<https://devfeed.tech/topics/uwp.md>), [C++](<https://devfeed.tech/topics/c-plus-plus.md>)

Tags: [c-plus-plus](<https://devfeed.tech/tags/c-plus-plus.md>), [engineering](<https://devfeed.tech/tags/engineering.md>), [javascript](<https://devfeed.tech/tags/javascript.md>), [memory-leak](<https://devfeed.tech/tags/memory-leak.md>), [react](<https://devfeed.tech/tags/react.md>), [redux](<https://devfeed.tech/tags/redux.md>), [xbox](<https://devfeed.tech/tags/xbox.md>)

## AI overview

SoundCloud describes memory growth in its Xbox React Redux application, which runs in a UWP web-view wrapper with a native C++ playback layer. Testing found that the Redux store kept growing during sessions lasting more than an hour under Xbox background-memory constraints.

## Source excerpt

The SoundCloud Xbox application is a regular React Redux application that runs in a native web view wrapper on Microsoft's UWP framework. In...