You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we use one single Sqlite DB file to host all data across users.
This approach does not scale up apparently.
A simple idea to scale up the system is to create a standalone DB file for each user.
If a particular user has too many logged queries history, we can hardcode a size budget (e.g., 1 million) and rotating the queries log.
The text was updated successfully, but these errors were encountered:
Currently, we use one single Sqlite DB file to host all data across users.
This approach does not scale up apparently.
A simple idea to scale up the system is to create a standalone DB file for each user.
If a particular user has too many logged queries history, we can hardcode a size budget (e.g., 1 million) and rotating the queries log.
The text was updated successfully, but these errors were encountered: