I am working on a product where I am using ReactJS for front-end. I am getting a huge amount of data(in thousands) in the form of a list, on API response which I want to store locally. So what should I prefer in this scenario, LocalStorage
or Redux
?
I am confused since the amount of data is very large and I think storing it on redux-store
may lead to some performance issue.