I use Axios to get a response from an endpoint and then I input that response into a variable in the form of an object. The response I get from the server has more than 10000 data.
My question is :
- How to process the data so it doesn't take up memory and can insert it into a table?
- Is there a request handler that can process that response better?
- Or is there a method to partially download the response so that it can be partially consumed by the user from the frontend?