Use react to do ssr, a list of data, is put in the server's redux, close the browser, the server's redux data is still there?

Boss,

question 1. When using react to do ssr, for example, there is a list of data in the server"s redux, browsing for a while to close the browser, is the server"s redux data still there?

question 2. When using react to do ssr, for example, there is a list data that is placed in the redux of the server, and at the same time, 1000 people log in to request this list. Is there 1000 list data stored in the server memory (because different people log in to different accounts with different data, and the interface is the same)?

Aug.30,2021

when the html rendered by the server is transferred, the corresponding redux for this rendering should not be used by any variables (if the code is fine), and the V8 engine can garbage collect it at any time (not necessarily whether it can be recycled immediately), which has nothing to do with when the browser shuts down.

Menu