Optimize database during scan to ease very large DB imports

This commit is contained in:
emeric
2023-11-02 14:55:27 +01:00
parent 1be04b6e76
commit e0ed182784
3 changed files with 15 additions and 0 deletions
@@ -187,4 +187,14 @@ namespace Database
LMS_LOG(DB, INFO) << "Database Analyze complete";
}
void Session::optimize()
{
LMS_LOG(DB, INFO) << "Optimizing database...";
{
auto uniqueTransaction{ createUniqueTransaction() };
_session.execute("PRAGMA optimize");
}
LMS_LOG(DB, INFO) << "Database optimizing complete";
}
} // namespace Database
@@ -61,6 +61,7 @@ namespace Database
void checkSharedLocked();
void analyze();
void optimize();
void prepareTables(); // need to run only once at startup