FAQ
Frequently asked questions about Evolu.
What is the SQLite database size limit?
The size limit depends on the storage quotas and eviction criteria of the browser or platform in use. For detailed information, refer to the Storage quotas and eviction criteria documentation.
How can I check the current database filesize?
Use exportDatabase
method on Evolu instance.
const database = await evolu.exportDatabase();
const sizeInBytes = database.length;
console.log(`Database size: ${sizeInBytes} bytes`);
How to delete OPFS Sqlite in browser?
To clear the OPFS (Origin Private File System) SQLite database:
- Install the OPFS Explorer Chrome DevTools extension
- Disable JavaScript in your browser
- Reload the page
- Open DevTools and navigate to the OPFS Explorer tab
- Remove the SQLite database file
- Re-enable JavaScript
- Reload the page