I'm creating a table for getting web reports, everything is perfect, but the ram memory. With big data, the memory usage gets a real problem.
Any ideas on how could I store all data without using the memory? I saw that LocalStorage or IndexedDB might be an option. But I really don't know how to use them and if the performance is good.
My table just shows (elements) that can be seen on the screen, the rest keeps in the array, and all the time I scroll the rows (elements) are updated. So I need an option that is fast to access and get data from. And for sure, I need to sort, filter, and do stuff like that.
Any ideas?