In Redux, where does the state actually get stored?
问题 I searched a bit about this question but found very vague answers. In redux, we know that the state is stored as an object. But where is this state stored actually? Is it somehow saved as a file which can be accessed by us later on? What I know is that it does not store it in a cookie format or in the browser's local storage. 回答1: The state in Redux is stored in memory, in the Redux store. This means that, if you refresh the page, that state gets wiped out. You can imagine that store looking