ARTICLE AD BOX
I'm working on an app that has to load a large amount of data. Currently I have everything loading on login, and it takes a couple minutes to complete the load. That is already undesirably long, but it is likely to go up as more data becomes necessary.
The basic context is that I'm loading parent objects that have a couple of lists of child objects. The back end is ASP.NET MVC. The front end is JavaScript, specifically React.
I'm trying to figure out how to load a small initial amount on login, and then stream the rest in the background.
My basic research thus far would seem to indicate that the best way to do this might be JavaScript fetch API, with readable streams.
I'm looking for help and suggestions as to what is the best practice here. Thanks for your time!
