In our application we are using browser indexedDB storage for offline data storage, which was working as expected in Windows/ Mac chrome browser.
But in IPad Chrome we are not able to use after 900+ MB data. we have to support upto 5 GB of data storage. in this same scenario safari allows us to use upto 100+ GB (128 GB IPad Pro variant) by user approval of memory extension popup. Is there any way to achieve the same in chrome?
Also in Both browsers after removing data from indexed DB, removed data memory was not reduced in app usage memory. Lets assume I have uploaded 900MB data to indexdb datastore. then after process im removing the 900MB data from indexedDB. I have checked the indexeddb data was empty. Now im checking the IPad storage it still shows that 900MB in Chrome used memory. IPad OS not freeing the space after indexed DB data deletion. Is there any other option to free/release the memory from browser app usage?
I have tried removing the data from indexedDB, memory was not released. Clearing the browser cache which releases the memory partially. but we want to handle it from javascript itself.