Has anyone tried implementing IndexedDB for large datasets?
I 'm trying to reduce the amount of calls to Supabase (keep costs low etc . . . ) It wont be an issue for some time but all being well , my user base and data set will grow into the 1000 's . I 'm looking at solutions for this . Currently I 'm storing the data in a variable when the page loads , my search and filter page is using this variable with a formula . Looking at IndexedDB for storing my public data on the client side . Has anyone else done somethnig like this ? You could also use an alternative db like InstantDB which uses indexeddb and implements the sync layer for you How much data are we talking about though ? Are you seeing performance issues with loading it from a static file as you are now ?