I have to display a table in my angular app. The table displays 10-15Mb JSON data. So to load this every time, it really slowing down my site. What I have thought of a possible solution-
- After initial reload, store the data in as cache/session storage.
- Until and unless the user is logged in, he/she should be able to reload the data from the cache without getting the data from the API.
Can anyone help me on implementing this(if this is the correct approach) or please suggest a better approach.