Search code examples
reactjsvue.jsreduxvuexstate-management

Does using state management such as Redux or Vuex make the web application faster?


Does storing data to central store makes the web application faster?

One of the reasons that I think is that once the data is fetched from an API, you have data to "pre-show" to the user next time when the user comes back to that view.

Meanwhile, if we were to not use state management, users have to wait every single time until the data is fetched.

Are these statements correct?


Solution

  • Yes, these statements are correct.