Logo IshanKBG
Archive About

Enabling Write-Ahead Logging in SQLite

Published on 1 min read

SQLite performs its transactions on disk and there are essentially two modes of doing this: rollback journal mode and write-ahead logging (WAL) mode. By default SQLite uses rollback journal mode, which is simple and safe but can be slow and not very efficient. On other hand, WAL mode is significantly faster and more efficient than rollback journal mode in most scenarios. WAL mode is also useful when reading and writing to the database needs to be concurrent, as it allows readers to access the database while writers are writing to it. Enabling WAL mode in SQLite is simple and can be done by executing the following command:

sqlite3 mydb.db 'PRAGMA journal_mode=WAL;'

To turn off WAL mode and revert back to rollback journal mode, you can run the following command:

sqlite3 mydb.db 'PRAGMA journal_mode=DELETE;'

That’s it! You have now enabled Write-Ahead Logging (WAL) mode in SQLite and can enjoy the benefits of improved performance and concurrency.