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
The database version takes 3m while the in-memory version only takes 5s to parse 5,000 modules and create the portable. Maybe there is some optimization could speed up the database version. Like:
Use the original in-memory approach to collect the portable then batch insert the records into SQLite database.
Enable multiple threads database modification by (1) replacing the "retrieve then create" with UNIQUE table constraint and (2) removing last_insert_rowid().
Add index for tables.
The text was updated successfully, but these errors were encountered:
The database version takes 3m while the in-memory version only takes 5s to parse 5,000 modules and create the portable. Maybe there is some optimization could speed up the database version. Like:
UNIQUE
table constraint and (2) removinglast_insert_rowid()
.The text was updated successfully, but these errors were encountered: