Skip to content

Commit

Permalink
Speed up SQLite for client even more
Browse files Browse the repository at this point in the history
  • Loading branch information
thorvald committed Oct 15, 2010
1 parent 8eef3c0 commit 9fee66e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mumble/Database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ Database::Database() {

query.exec(QLatin1String("VACUUM"));

query.exec(QLatin1String("PRAGMA synchronous = NORMAL"));
query.exec(QLatin1String("PRAGMA synchronous = OFF"));
query.exec(QLatin1String("PRAGMA journal_mode = TRUNCATE"));

query.exec(QLatin1String("SELECT sqlite_version()"));
Expand Down

0 comments on commit 9fee66e

Please sign in to comment.